(self)
| 1462 | __dialect__ = default.DefaultDialect(supports_native_boolean=True) |
| 1463 | |
| 1464 | def test_single_bool_one(self): |
| 1465 | self.assert_compile(~and_(true()), "false") |
| 1466 | |
| 1467 | def test_single_bool_two(self): |
| 1468 | self.assert_compile(~and_(True), "false") |
nothing calls this directly
no test coverage detected