(self)
| 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() |
| 7875 | self.assert_compile(and_(None, t.c.id == 1), "NULL AND foo.id = :id_1") |
| 7876 | |
| 7877 | def test_None_and_nothing(self): |
| 7878 | # current convention is None in and_() |
nothing calls this directly
no test coverage detected