| 89 | } |
| 90 | |
| 91 | type fakeMenusCmdBuilder struct { |
| 92 | captureFn func(*exec.Cmd) (string, string, error) |
| 93 | captureCnt int |
| 94 | } |
| 95 | |
| 96 | func (f *fakeMenusCmdBuilder) BuildGitCmd(ctx context.Context, dir string, extraArgs ...string) *exec.Cmd { |
| 97 | return exec.CommandContext(ctx, "git", extraArgs...) |
nothing calls this directly
no outgoing calls
no test coverage detected