(self)
| 1566 | ) |
| 1567 | |
| 1568 | def test_seven(self): |
| 1569 | x = column("x") |
| 1570 | self.assert_compile( |
| 1571 | and_(true(), x == 7, true(), x == 9), "x = :x_1 AND x = :x_2" |
| 1572 | ) |
| 1573 | |
| 1574 | def test_eight(self): |
| 1575 | x = column("x") |
nothing calls this directly
no test coverage detected