Ensure that get_db returns the expected db.
(self)
| 33 | ) |
| 34 | |
| 35 | def test_get_db(self): |
| 36 | """Ensure that get_db returns the expected db.""" |
| 37 | db = self.Person._get_db() |
| 38 | assert self.db == db |
| 39 | |
| 40 | def test_get_collection_name(self): |
| 41 | """Ensure that get_collection_name returns the expected collection |