(self, tmp_path: Path, monkeypatch: MonkeyPatch)
| 1382 | assert inicfg == {} |
| 1383 | |
| 1384 | def test_nothing(self, tmp_path: Path, monkeypatch: MonkeyPatch) -> None: |
| 1385 | monkeypatch.chdir(tmp_path) |
| 1386 | rootpath, inipath, inicfg = determine_setup(None, [str(tmp_path)]) |
| 1387 | assert rootpath == tmp_path |
| 1388 | assert inipath is None |
| 1389 | assert inicfg == {} |
| 1390 | |
| 1391 | @pytest.mark.parametrize( |
| 1392 | "name, contents", |
nothing calls this directly
no test coverage detected