(self)
| 1338 | ) |
| 1339 | |
| 1340 | def test_three_a_double(self): |
| 1341 | c = column("x", Boolean) |
| 1342 | self.assert_compile( |
| 1343 | select(c).where(~~c), |
| 1344 | "SELECT x WHERE x = 1", |
| 1345 | dialect=self._dialect(False), |
| 1346 | ) |
| 1347 | |
| 1348 | def test_three_b(self): |
| 1349 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected