(self)
| 1362 | ) |
| 1363 | |
| 1364 | def test_four_double(self): |
| 1365 | c = column("x", Boolean) |
| 1366 | self.assert_compile( |
| 1367 | select(c).where(~~c), |
| 1368 | "SELECT x WHERE x", |
| 1369 | dialect=self._dialect(True), |
| 1370 | ) |
| 1371 | |
| 1372 | def test_five_a(self): |
| 1373 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected