(self)
| 1354 | ) |
| 1355 | |
| 1356 | def test_four(self): |
| 1357 | c = column("x", Boolean) |
| 1358 | self.assert_compile( |
| 1359 | select(c).where(~c), |
| 1360 | "SELECT x WHERE NOT x", |
| 1361 | dialect=self._dialect(True), |
| 1362 | ) |
| 1363 | |
| 1364 | def test_four_double(self): |
| 1365 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected