(self, tmp_path: Path)
| 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" |
| 191 | fn.touch() |
| 192 | assert get_common_ancestor(Path.cwd(), [fn]) == tmp_path |
| 193 | |
| 194 | |
| 195 | def test_get_dirs_from_args(tmp_path): |
nothing calls this directly
no test coverage detected