(self)
| 1645 | ) |
| 1646 | |
| 1647 | def test_single_bool_ten(self): |
| 1648 | self.assert_compile( |
| 1649 | or_(False), |
| 1650 | "0 = 1", |
| 1651 | dialect=default.DefaultDialect(supports_native_boolean=False), |
| 1652 | ) |
| 1653 | |
| 1654 | @combinations( |
| 1655 | (and_, "and_", r"true", "True"), |
nothing calls this directly
no test coverage detected