(self)
| 1482 | ) |
| 1483 | |
| 1484 | def test_three_a(self): |
| 1485 | c = column("x", Boolean) |
| 1486 | self.assert_compile( |
| 1487 | select(c).where(~c), |
| 1488 | "SELECT x WHERE x = 0", |
| 1489 | dialect=self._dialect(False), |
| 1490 | ) |
| 1491 | |
| 1492 | def test_three_a_double(self): |
| 1493 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected