(self)
| 1322 | ) |
| 1323 | |
| 1324 | def test_two_b(self): |
| 1325 | c = column("x", Boolean) |
| 1326 | self.assert_compile( |
| 1327 | select(c).where(c), |
| 1328 | "SELECT x WHERE x = 1", |
| 1329 | dialect=self._dialect(False), |
| 1330 | ) |
| 1331 | |
| 1332 | def test_three_a(self): |
| 1333 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected