(self, tmp_path: Path)
| 184 | assert get_common_ancestor(cwd, [fn1, fn2.parent]) == tmp_path / "foo" |
| 185 | |
| 186 | def test_single_dir(self, tmp_path: Path) -> None: |
| 187 | assert get_common_ancestor(Path.cwd(), [tmp_path]) == tmp_path |
| 188 | |
| 189 | def test_single_file(self, tmp_path: Path) -> None: |
| 190 | fn = tmp_path / "foo.py" |
nothing calls this directly
no test coverage detected