Create a minimal source directory with man1/ and man8/.
(tmp_path: Path)
| 13 | |
| 14 | |
| 15 | def _make_src(tmp_path: Path) -> Path: |
| 16 | """Create a minimal source directory with man1/ and man8/.""" |
| 17 | src = tmp_path / "src" |
| 18 | (src / "man1").mkdir(parents=True) |
| 19 | (src / "man8").mkdir(parents=True) |
| 20 | return src |
| 21 | |
| 22 | |
| 23 | def _write(path: Path, content: str = "content") -> None: |
no outgoing calls
no test coverage detected