(benchmark, cmd_fixture, repo_archive, tmpdir)
| 80 | |
| 81 | |
| 82 | def test_extract(benchmark, cmd_fixture, repo_archive, tmpdir): |
| 83 | repo, archive = repo_archive |
| 84 | with changedir(str(tmpdir)): |
| 85 | result, out = benchmark.pedantic(cmd_fixture, (f"--repo={repo}", "extract", archive)) |
| 86 | assert result == 0 |
| 87 | |
| 88 | |
| 89 | def test_delete(benchmark, cmd_fixture, repo_archive): |
nothing calls this directly
no test coverage detected