(self)
| 1447 | ) |
| 1448 | |
| 1449 | def test_twelve(self): |
| 1450 | c = column("x", Boolean) |
| 1451 | # I don't have a solution for this one yet, |
| 1452 | # other than adding some heavy-handed conditionals |
| 1453 | # into compiler |
| 1454 | self.assert_compile( |
| 1455 | c.is_(true()), "x IS 1", dialect=self._dialect(False) |
| 1456 | ) |
| 1457 | |
| 1458 | |
| 1459 | class ConjunctionTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected