(cmd string, args ...string)
| 20 | } |
| 21 | |
| 22 | func cmdKey(cmd string, args ...string) string { |
| 23 | return cmd + " " + strings.Join(args, " ") |
| 24 | } |
| 25 | |
| 26 | func (f *FakeExec) CommandContext(_ context.Context, cmd string, args ...string) xunix.Cmd { |
| 27 | // TODO: This isn't a great key because you may have multiple of the same commands |
no outgoing calls
no test coverage detected