(self)
| 1620 | self.assert_compile(~and_(True), "false") |
| 1621 | |
| 1622 | def test_single_bool_three(self): |
| 1623 | self.assert_compile(or_(~and_(true())), "false") |
| 1624 | |
| 1625 | def test_single_bool_four(self): |
| 1626 | self.assert_compile(~or_(false()), "true") |
nothing calls this directly
no test coverage detected