(self)
| 1480 | self.assert_compile(and_(~or_(false())), "true") |
| 1481 | |
| 1482 | def test_single_bool_seven(self): |
| 1483 | self.assert_compile(and_(True), "true") |
| 1484 | |
| 1485 | def test_single_bool_eight(self): |
| 1486 | self.assert_compile(or_(False), "false") |
nothing calls this directly
no test coverage detected