Resolving a nonexistent path raises FileNotFoundError or ValueError.
()
| 68 | |
| 69 | |
| 70 | def test_resolve_nonexistent_raises() -> None: |
| 71 | """Resolving a nonexistent path raises FileNotFoundError or ValueError.""" |
| 72 | handler = InputHandler() |
| 73 | with pytest.raises((FileNotFoundError, ValueError)): |
| 74 | handler.resolve("/nonexistent/path/xyz") |
| 75 | |
| 76 | |
| 77 | def test_resolve_single_non_md_file(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected