(self)
| 7859 | self.assert_compile(and_(t.c.id == 1, False), "false") |
| 7860 | |
| 7861 | def test_val_and_true_coerced(self): |
| 7862 | t = self._fixture() |
| 7863 | self.assert_compile(and_(t.c.id == 1, True), "foo.id = :id_1") |
| 7864 | |
| 7865 | def test_val_is_null_coerced(self): |
| 7866 | t = self._fixture() |
nothing calls this directly
no test coverage detected