(self)
| 1599 | ) |
| 1600 | |
| 1601 | def test_twelve(self): |
| 1602 | c = column("x", Boolean) |
| 1603 | # I don't have a solution for this one yet, |
| 1604 | # other than adding some heavy-handed conditionals |
| 1605 | # into compiler |
| 1606 | self.assert_compile( |
| 1607 | c.is_(true()), "x IS 1", dialect=self._dialect(False) |
| 1608 | ) |
| 1609 | |
| 1610 | |
| 1611 | class ConjunctionTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected