()
| 93 | |
| 94 | |
| 95 | def test_helper_failures() -> None: |
| 96 | helper = ErrorsHelper() |
| 97 | with pytest.raises(Exception): # noqa: B017 |
| 98 | _ = helper.raise_exception |
| 99 | with pytest.raises(OutcomeException): |
| 100 | _ = helper.raise_fail_outcome |
| 101 | |
| 102 | |
| 103 | def test_safe_getattr() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…