(self)
| 10 | @unittest.skipIf(SKIP, "Test requires CPython") |
| 11 | class TestGCCollector(unittest.TestCase): |
| 12 | def setUp(self): |
| 13 | gc.disable() |
| 14 | gc.collect() |
| 15 | self.registry = CollectorRegistry() |
| 16 | |
| 17 | def test_working(self): |
| 18 | GCCollector(registry=self.registry) |
nothing calls this directly
no test coverage detected