| 79 | |
| 80 | |
| 81 | class ErrorsHelper: |
| 82 | @property |
| 83 | def raise_baseexception(self): |
| 84 | raise BaseException("base exception should be raised") |
| 85 | |
| 86 | @property |
| 87 | def raise_exception(self): |
| 88 | raise Exception("exception should be caught") |
| 89 | |
| 90 | @property |
| 91 | def raise_fail_outcome(self): |
| 92 | pytest.fail("fail should be caught") |
| 93 | |
| 94 | |
| 95 | def test_helper_failures() -> None: |
no outgoing calls
searching dependent graphs…