Create a fake git repo root so directory walk stays bounded.
(base: Path)
| 58 | |
| 59 | |
| 60 | def _make_repo(base: Path) -> Path: |
| 61 | """Create a fake git repo root so directory walk stays bounded.""" |
| 62 | (base / ".git").mkdir(exist_ok=True) |
| 63 | return base |
| 64 | |
| 65 | |
| 66 | def _fake_urlopen_response(data: dict) -> MagicMock: |
no outgoing calls
no test coverage detected