Test that our error checking works.
(err: str, rep: str, match: str)
| 210 | ], |
| 211 | ) |
| 212 | def test_error_checking(err: str, rep: str, match: str) -> None: |
| 213 | """Test that our error checking works.""" |
| 214 | with pytest.raises(AssertionError, match=match): |
| 215 | _check_err_rep( |
| 216 | err, |
| 217 | rep, |
| 218 | (None, None), |
| 219 | "dummy", |
| 220 | (supported_languages, supported_languages), |
| 221 | ) |
| 222 | |
| 223 | |
| 224 | @pytest.mark.skipif(not spellers, reason="requires aspell-en") |
nothing calls this directly
no test coverage detected
searching dependent graphs…