(self)
| 1700 | self.assert_compile(and_(true()._ifnone(None), x == 7), "x = :x_1") |
| 1701 | |
| 1702 | def test_six(self): |
| 1703 | x = column("x") |
| 1704 | self.assert_compile(or_(true(), x == 7), "true") |
| 1705 | self.assert_compile(or_(x == 7, true()), "true") |
| 1706 | self.assert_compile(~or_(x == 7, true()), "false") |
| 1707 | |
| 1708 | def test_six_pt_five(self): |
| 1709 | x = column("x") |
nothing calls this directly
no test coverage detected