Deprecated: use cli.Docker or cli.DockerCmd
(args ...string)
| 35 | |
| 36 | // Deprecated: use cli.Docker or cli.DockerCmd |
| 37 | func dockerCmdWithError(args ...string) (string, int, error) { |
| 38 | result := cli.Docker(cli.Args(args...)) |
| 39 | if result.Error != nil { |
| 40 | return result.Combined(), result.ExitCode, result.Compare(icmd.Success) |
| 41 | } |
| 42 | return result.Combined(), result.ExitCode, result.Error |
| 43 | } |
| 44 | |
| 45 | func findContainerIP(t *testing.T, id string, network string) string { |
| 46 | t.Helper() |
no test coverage detected
searching dependent graphs…