(self)
| 25 | repo.fetch() |
| 26 | |
| 27 | def test_fetch_remote(self): |
| 28 | repo = GitCommand() |
| 29 | when(repo).git("fetch", "--prune", "origin", None) |
| 30 | repo.fetch("origin") |
| 31 | |
| 32 | def test_fetch_branch(self): |
| 33 | repo = GitCommand() |
nothing calls this directly
no test coverage detected