(self)
| 45 | self.db.inventory.drop() |
| 46 | |
| 47 | def tearDown(self): |
| 48 | # Run after every test. |
| 49 | self.db.inventory.drop() |
| 50 | self.client.drop_database("pymongo_test") |
| 51 | |
| 52 | def test_first_three_examples(self): |
| 53 | db = self.db |
nothing calls this directly
no test coverage detected