(self)
| 20 | |
| 21 | class TestInheritance(MongoDBTestCase): |
| 22 | def tearDown(self): |
| 23 | for collection in list_collection_names(self.db): |
| 24 | self.db.drop_collection(collection) |
| 25 | |
| 26 | def test_constructor_cls(self): |
| 27 | # Ensures _cls is properly set during construction |
nothing calls this directly
no test coverage detected