(remote string, refspec string)
| 30 | } |
| 31 | |
| 32 | func (g *mockGitClient) Fetch(remote string, refspec string) error { |
| 33 | args := g.Called(remote, refspec) |
| 34 | return args.Error(0) |
| 35 | } |
| 36 | |
| 37 | func (g *mockGitClient) ForRepo(repoDir string) gitClient { |
| 38 | args := g.Called(repoDir) |