(self)
| 1724 | ) |
| 1725 | |
| 1726 | def test_eight(self): |
| 1727 | x = column("x") |
| 1728 | self.assert_compile( |
| 1729 | or_(false(), x == 7, false(), x == 9), "x = :x_1 OR x = :x_2" |
| 1730 | ) |
| 1731 | |
| 1732 | def test_nine(self): |
| 1733 | x = column("x") |
nothing calls this directly
no test coverage detected