(self)
| 1330 | ) |
| 1331 | |
| 1332 | def test_three_a(self): |
| 1333 | c = column("x", Boolean) |
| 1334 | self.assert_compile( |
| 1335 | select(c).where(~c), |
| 1336 | "SELECT x WHERE x = 0", |
| 1337 | dialect=self._dialect(False), |
| 1338 | ) |
| 1339 | |
| 1340 | def test_three_a_double(self): |
| 1341 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected