(self)
| 18 | # Attempt full line coverage of copy.py from top to bottom |
| 19 | |
| 20 | def test_exceptions(self): |
| 21 | self.assertIs(copy.Error, copy.error) |
| 22 | self.assertIsSubclass(copy.Error, Exception) |
| 23 | |
| 24 | # The copy() method |
| 25 |
nothing calls this directly
no test coverage detected