(self)
| 66 | self.Job = Job |
| 67 | |
| 68 | def tearDown(self): |
| 69 | for collection in list_collection_names(self.db): |
| 70 | self.db.drop_collection(collection) |
| 71 | |
| 72 | def _assert_db_equal(self, docs): |
| 73 | assert list(self.Person._get_collection().find().sort("id")) == sorted( |
nothing calls this directly
no test coverage detected