(self)
| 7675 | self.assert_compile(and_(None), "NULL") |
| 7676 | |
| 7677 | def test_val_and_null(self): |
| 7678 | t = self._fixture() |
| 7679 | self.assert_compile( |
| 7680 | and_(t.c.id == 1, null()), "foo.id = :id_1 AND NULL" |
| 7681 | ) |
| 7682 | |
| 7683 | |
| 7684 | class ResultMapTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected