(self)
| 765 | self.dbs = [self.db, self.client.pymongo_test_2] |
| 766 | |
| 767 | def tearDown(self): |
| 768 | for db in self.dbs: |
| 769 | self.client.drop_database(db) |
| 770 | super().tearDown() |
| 771 | |
| 772 | def change_stream_with_client(self, client, *args, **kwargs): |
| 773 | return client.watch(*args, **kwargs) |
nothing calls this directly
no test coverage detected