(self)
| 1548 | self.assert_compile(and_(true()._ifnone(None), x == 7), "x = :x_1") |
| 1549 | |
| 1550 | def test_six(self): |
| 1551 | x = column("x") |
| 1552 | self.assert_compile(or_(true(), x == 7), "true") |
| 1553 | self.assert_compile(or_(x == 7, true()), "true") |
| 1554 | self.assert_compile(~or_(x == 7, true()), "false") |
| 1555 | |
| 1556 | def test_six_pt_five(self): |
| 1557 | x = column("x") |
nothing calls this directly
no test coverage detected