(c *C, path string, cmds ...string)
| 3280 | } |
| 3281 | |
| 3282 | func ExecuteOnPath(c *C, path string, cmds ...string) error { |
| 3283 | for _, cmd := range cmds { |
| 3284 | err := executeOnPath(path, cmd) |
| 3285 | c.Assert(err, IsNil) |
| 3286 | } |
| 3287 | |
| 3288 | return nil |
| 3289 | } |
| 3290 | |
| 3291 | func executeOnPath(path, cmd string) error { |
| 3292 | args := strings.Split(cmd, " ") |
no test coverage detected
searching dependent graphs…