(self)
| 1466 | ) |
| 1467 | |
| 1468 | def test_two_a(self): |
| 1469 | c = column("x", Boolean) |
| 1470 | self.assert_compile( |
| 1471 | select(c).where(c), |
| 1472 | "SELECT x WHERE x = 1", |
| 1473 | dialect=self._dialect(False), |
| 1474 | ) |
| 1475 | |
| 1476 | def test_two_b(self): |
| 1477 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected