(self)
| 1800 | ) |
| 1801 | |
| 1802 | def test_is_true_literal(self): |
| 1803 | c = column("x", Boolean) |
| 1804 | self.assert_compile(c.is_(True), "x IS true") |
| 1805 | |
| 1806 | def test_is_false_literal(self): |
| 1807 | c = column("x", Boolean) |
nothing calls this directly
no test coverage detected