()
| 164 | |
| 165 | |
| 166 | def test_helper_failures() -> None: |
| 167 | helper = ErrorsHelper() |
| 168 | with pytest.raises(Exception): |
| 169 | helper.raise_exception |
| 170 | with pytest.raises(OutcomeException): |
| 171 | helper.raise_fail_outcome |
| 172 | |
| 173 | |
| 174 | def test_safe_getattr() -> None: |
nothing calls this directly
no test coverage detected