(self)
| 20 | |
| 21 | class TestFetchInterface(TestGitMixinsUsage): |
| 22 | def test_fetch_all(self): |
| 23 | repo = GitCommand() |
| 24 | when(repo).git("fetch", "--prune", "--all", None) |
| 25 | repo.fetch() |
| 26 | |
| 27 | def test_fetch_remote(self): |
| 28 | repo = GitCommand() |
nothing calls this directly
no test coverage detected