Runnable is typically an exec.Cmd or its stub in tests
| 15 | |
| 16 | // Runnable is typically an exec.Cmd or its stub in tests |
| 17 | type Runnable interface { |
| 18 | Output() ([]byte, error) |
| 19 | Run() error |
| 20 | } |
| 21 | |
| 22 | // PrepareCmd extends exec.Cmd with extra error reporting features and provides a |
| 23 | // hook to stub command execution in tests |
no outgoing calls
no test coverage detected