(self)
| 1718 | ) |
| 1719 | |
| 1720 | def test_seven(self): |
| 1721 | x = column("x") |
| 1722 | self.assert_compile( |
| 1723 | and_(true(), x == 7, true(), x == 9), "x = :x_1 AND x = :x_2" |
| 1724 | ) |
| 1725 | |
| 1726 | def test_eight(self): |
| 1727 | x = column("x") |
nothing calls this directly
no test coverage detected