(self)
| 1474 | ) |
| 1475 | |
| 1476 | def test_two_b(self): |
| 1477 | c = column("x", Boolean) |
| 1478 | self.assert_compile( |
| 1479 | select(c).where(c), |
| 1480 | "SELECT x WHERE x = 1", |
| 1481 | dialect=self._dialect(False), |
| 1482 | ) |
| 1483 | |
| 1484 | def test_three_a(self): |
| 1485 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected