(self)
| 1506 | ) |
| 1507 | |
| 1508 | def test_four(self): |
| 1509 | c = column("x", Boolean) |
| 1510 | self.assert_compile( |
| 1511 | select(c).where(~c), |
| 1512 | "SELECT x WHERE NOT x", |
| 1513 | dialect=self._dialect(True), |
| 1514 | ) |
| 1515 | |
| 1516 | def test_four_double(self): |
| 1517 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected