(tmp_path, basetemp, monkeypatch)
| 86 | |
| 87 | @pytest.mark.parametrize("basetemp", ["foo", "foo/bar"]) |
| 88 | def test_validate_basetemp_ok(tmp_path, basetemp, monkeypatch): |
| 89 | monkeypatch.chdir(str(tmp_path)) |
| 90 | validate_basetemp(tmp_path / basetemp) |
| 91 | |
| 92 | |
| 93 | @pytest.mark.parametrize("basetemp", ["", ".", ".."]) |
nothing calls this directly
no test coverage detected