(self)
| 3858 | self.DynDoc = DynDoc |
| 3859 | |
| 3860 | def tearDown(self): |
| 3861 | for collection in list_collection_names(self.db): |
| 3862 | self.db.drop_collection(collection) |
| 3863 | |
| 3864 | def test_setting_fields_in_constructor_of_strict_doc_uses_model_names(self): |
| 3865 | doc = self.Doc(z1=True, z2=False) |
nothing calls this directly
no test coverage detected