(self)
| 1498 | ) |
| 1499 | |
| 1500 | def test_three_b(self): |
| 1501 | c = column("x", Boolean) |
| 1502 | self.assert_compile( |
| 1503 | select(c).where(~c), |
| 1504 | "SELECT x WHERE x = 0", |
| 1505 | dialect=self._dialect(False), |
| 1506 | ) |
| 1507 | |
| 1508 | def test_four(self): |
| 1509 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected