(self)
| 124 | self.assertNotEqual(gc.collect(), 0) |
| 125 | |
| 126 | def test_newstyleclass(self): |
| 127 | class A(object): |
| 128 | pass |
| 129 | gc.collect() |
| 130 | del A |
| 131 | self.assertNotEqual(gc.collect(), 0) |
| 132 | |
| 133 | def test_instance(self): |
| 134 | class A: |
nothing calls this directly
no test coverage detected