(self)
| 1617 | self.assert_compile(~and_(true()), "false") |
| 1618 | |
| 1619 | def test_single_bool_two(self): |
| 1620 | self.assert_compile(~and_(True), "false") |
| 1621 | |
| 1622 | def test_single_bool_three(self): |
| 1623 | self.assert_compile(or_(~and_(true())), "false") |
nothing calls this directly
no test coverage detected