(tmp_path)
| 17 | |
| 18 | |
| 19 | def test_nonexistent_path(tmp_path): |
| 20 | errors = validate(tmp_path / "nonexistent") |
| 21 | assert len(errors) == 1 |
| 22 | assert "does not exist" in errors[0] |
| 23 | |
| 24 | |
| 25 | def test_not_a_directory(tmp_path): |
nothing calls this directly
no test coverage detected