(self)
| 1490 | ) |
| 1491 | |
| 1492 | def test_three_a_double(self): |
| 1493 | c = column("x", Boolean) |
| 1494 | self.assert_compile( |
| 1495 | select(c).where(~~c), |
| 1496 | "SELECT x WHERE x = 1", |
| 1497 | dialect=self._dialect(False), |
| 1498 | ) |
| 1499 | |
| 1500 | def test_three_b(self): |
| 1501 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected