(self)
| 1757 | ) |
| 1758 | |
| 1759 | def test_fourteen(self): |
| 1760 | x = column("x") |
| 1761 | self.assert_compile( |
| 1762 | select(x).where(~null()), "SELECT x WHERE NOT NULL" |
| 1763 | ) |
| 1764 | |
| 1765 | def test_constants_are_singleton(self): |
| 1766 | is_(null(), null()) |
nothing calls this directly
no test coverage detected