(self)
| 1621 | next(self.db.test.find_raw_batches(collation=Collation("en_US"))) |
| 1622 | |
| 1623 | def test_read_concern(self): |
| 1624 | self.db.get_collection("test", write_concern=WriteConcern(w="majority")).insert_one({}) |
| 1625 | c = self.db.get_collection("test", read_concern=ReadConcern("majority")) |
| 1626 | next(c.find_raw_batches()) |
| 1627 | |
| 1628 | def test_monitoring(self): |
| 1629 | listener = OvertCommandListener() |
nothing calls this directly
no test coverage detected