(self)
| 140 | self.assertEqual(self.collation.document, ci_cmd["indexes"][0]["collation"]) |
| 141 | |
| 142 | def test_aggregate(self): |
| 143 | self.db.test.aggregate([{"$group": {"_id": 42}}], collation=self.collation) |
| 144 | self.assertCollationInLastCommand() |
| 145 | |
| 146 | def test_count_documents(self): |
| 147 | self.db.test.count_documents({}, collation=self.collation) |
nothing calls this directly
no test coverage detected