(self)
| 1580 | self.assertIsNotNone(find_cmd["readConcern"]["atClusterTime"]) |
| 1581 | |
| 1582 | def test_explain(self): |
| 1583 | c = self.db.test |
| 1584 | c.insert_one({}) |
| 1585 | explanation = c.find_raw_batches().explain() |
| 1586 | self.assertIsInstance(explanation, dict) |
| 1587 | |
| 1588 | def test_empty(self): |
| 1589 | self.db.test.drop() |
nothing calls this directly
no test coverage detected