Should system exit if a file is missing.
(tmp_path: Path)
| 35 | |
| 36 | |
| 37 | def test_parse_file_path_missing(tmp_path: Path): |
| 38 | """Should system exit if a file is missing.""" |
| 39 | with pytest.raises(SystemExit): |
| 40 | _parse_file_path(str(tmp_path / "missing.py")) |
| 41 | |
| 42 | |
| 43 | def test_parse_file_exit_on_dir(tmp_path: Path): |
nothing calls this directly
no test coverage detected