(self)
| 156 | self.assertCollationInLastCommand() |
| 157 | |
| 158 | def test_find_command(self): |
| 159 | self.db.test.insert_one({"is this thing on?": True}) |
| 160 | self.listener.reset() |
| 161 | next(self.db.test.find(collation=self.collation)) |
| 162 | self.assertCollationInLastCommand() |
| 163 | |
| 164 | def test_explain_command(self): |
| 165 | self.listener.reset() |
nothing calls this directly
no test coverage detected