mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
74dd263834
* Move shell call related mocks to piper_test.go
12 lines
185 B
Go
12 lines
185 B
Go
package cmd
|
|
|
|
type execRunner interface {
|
|
RunExecutable(e string, p ...string) error
|
|
Dir(d string)
|
|
}
|
|
|
|
type shellRunner interface {
|
|
RunShell(s string, c string) error
|
|
Dir(d string)
|
|
}
|