(self)
| 1614 | __dialect__ = default.DefaultDialect(supports_native_boolean=True) |
| 1615 | |
| 1616 | def test_single_bool_one(self): |
| 1617 | self.assert_compile(~and_(true()), "false") |
| 1618 | |
| 1619 | def test_single_bool_two(self): |
| 1620 | self.assert_compile(~and_(True), "false") |
nothing calls this directly
no test coverage detected