(self)
| 1804 | self.assert_compile(c.is_(True), "x IS true") |
| 1805 | |
| 1806 | def test_is_false_literal(self): |
| 1807 | c = column("x", Boolean) |
| 1808 | self.assert_compile(c.is_(False), "x IS false") |
| 1809 | |
| 1810 | def test_and_false_literal_leading(self): |
| 1811 | self.assert_compile(and_(False, True), "false") |
nothing calls this directly
no test coverage detected