(self)
| 7881 | self.assert_compile(and_(None), "NULL") |
| 7882 | |
| 7883 | def test_val_and_null(self): |
| 7884 | t = self._fixture() |
| 7885 | self.assert_compile( |
| 7886 | and_(t.c.id == 1, null()), "foo.id = :id_1 AND NULL" |
| 7887 | ) |
| 7888 | |
| 7889 | |
| 7890 | class ResultMapTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected