Should system exit if a directory is passed
(tmp_path: Path)
| 41 | |
| 42 | |
| 43 | def test_parse_file_exit_on_dir(tmp_path: Path): |
| 44 | """Should system exit if a directory is passed""" |
| 45 | dir_path = tmp_path / "dir" |
| 46 | dir_path.mkdir() |
| 47 | with pytest.raises(SystemExit): |
| 48 | _parse_file_path(str(dir_path)) |
| 49 | |
| 50 | |
| 51 | def test_build_uv_command_pins_the_running_mcp_version(monkeypatch: pytest.MonkeyPatch): |
nothing calls this directly
no test coverage detected