(self)
| 1306 | return d |
| 1307 | |
| 1308 | def test_one(self): |
| 1309 | c = column("x", Boolean) |
| 1310 | self.assert_compile( |
| 1311 | select(c).where(c), |
| 1312 | "SELECT x WHERE x", |
| 1313 | dialect=self._dialect(True), |
| 1314 | ) |
| 1315 | |
| 1316 | def test_two_a(self): |
| 1317 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected