(tmp_path: pathlib.Path)
| 56 | |
| 57 | |
| 58 | def test_file_does_not_exist(tmp_path: pathlib.Path): |
| 59 | doc_file = tmp_path / "does-not-exists.yaml" |
| 60 | with pytest.raises(ValueError) as exc: |
| 61 | validate_doc(doc_file) |
| 62 | assert exc.value.args[0] == f"Form document at {doc_file} does not exist" |
| 63 | |
| 64 | |
| 65 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected