(self)
| 7867 | self.assert_compile(and_(t.c.id == None), "foo.id IS NULL") # noqa |
| 7868 | |
| 7869 | def test_val_and_None(self): |
| 7870 | t = self._fixture() |
| 7871 | self.assert_compile(and_(t.c.id == 1, None), "foo.id = :id_1 AND NULL") |
| 7872 | |
| 7873 | def test_None_and_val(self): |
| 7874 | t = self._fixture() |
nothing calls this directly
no test coverage detected