(self)
| 6495 | self._do_test(self.column == 5) |
| 6496 | |
| 6497 | def test_select(self): |
| 6498 | s = ( |
| 6499 | select(self.column) |
| 6500 | .select_from(self.table) |
| 6501 | .where(self.column == self.criterion) |
| 6502 | .order_by(self.column) |
| 6503 | ) |
| 6504 | self._do_test(s) |
| 6505 | |
| 6506 | def test_case(self): |
| 6507 | c = case((self.criterion, self.column), else_=self.column) |
nothing calls this directly
no test coverage detected