(self)
| 1618 | self.db.test.find_raw_batches()[0] |
| 1619 | |
| 1620 | def test_collation(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({}) |
nothing calls this directly
no test coverage detected