(self)
| 148 | self.assertCollationInLastCommand() |
| 149 | |
| 150 | def test_distinct(self): |
| 151 | self.db.test.distinct("foo", collation=self.collation) |
| 152 | self.assertCollationInLastCommand() |
| 153 | |
| 154 | self.listener.reset() |
| 155 | self.db.test.find(collation=self.collation).distinct("foo") |
| 156 | self.assertCollationInLastCommand() |
| 157 | |
| 158 | def test_find_command(self): |
| 159 | self.db.test.insert_one({"is this thing on?": True}) |
nothing calls this directly
no test coverage detected