(self, expr)
| 2814 | |
| 2815 | class NonZeroTest(fixtures.TestBase): |
| 2816 | def _raises(self, expr): |
| 2817 | assert_raises_message( |
| 2818 | TypeError, |
| 2819 | "Boolean value of this clause is not defined", |
| 2820 | bool, |
| 2821 | expr, |
| 2822 | ) |
| 2823 | |
| 2824 | def _assert_true(self, expr): |
| 2825 | is_(bool(expr), True) |
no test coverage detected