(self)
| 1105 | self.db.test.find().collection = "hello" # type: ignore |
| 1106 | |
| 1107 | def test_get_more(self): |
| 1108 | db = self.db |
| 1109 | db.drop_collection("test") |
| 1110 | db.test.insert_many([{"i": i} for i in range(10)]) |
| 1111 | self.assertEqual(10, len(db.test.find().batch_size(5).to_list())) |
| 1112 | |
| 1113 | def test_tailable(self): |
| 1114 | db = self.db |
nothing calls this directly
no test coverage detected