my docstring
()
| 62 | def test_duplicate_function_equality(self): |
| 63 | # Body of `duplicate' is the exact same as self.b |
| 64 | def duplicate(): |
| 65 | 'my docstring' |
| 66 | return 3 |
| 67 | self.assertNotEqual(self.b, duplicate) |
| 68 | |
| 69 | def test_copying___code__(self): |
no outgoing calls
no test coverage detected