(self)
| 1471 | self.assert_compile(or_(~and_(true())), "false") |
| 1472 | |
| 1473 | def test_single_bool_four(self): |
| 1474 | self.assert_compile(~or_(false()), "true") |
| 1475 | |
| 1476 | def test_single_bool_five(self): |
| 1477 | self.assert_compile(~or_(False), "true") |
nothing calls this directly
no test coverage detected