(self)
| 314 | ) |
| 315 | |
| 316 | def test_collate(self): |
| 317 | left = column("left") |
| 318 | right = "some collation" |
| 319 | left.comparator.operate(operators.collate, right).compare( |
| 320 | collate(left, right) |
| 321 | ) |
| 322 | |
| 323 | def test_default_adapt(self): |
| 324 | class TypeOne(TypeEngine): |