(self)
| 1514 | ) |
| 1515 | |
| 1516 | def test_four_double(self): |
| 1517 | c = column("x", Boolean) |
| 1518 | self.assert_compile( |
| 1519 | select(c).where(~~c), |
| 1520 | "SELECT x WHERE x", |
| 1521 | dialect=self._dialect(True), |
| 1522 | ) |
| 1523 | |
| 1524 | def test_five_a(self): |
| 1525 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected