Deprecated: use cli.Docker
(t *testing.T, name, field string)
| 88 | |
| 89 | // Deprecated: use cli.Docker |
| 90 | func inspectField(t *testing.T, name, field string) string { |
| 91 | t.Helper() |
| 92 | out, err := inspectFilter(name, "."+field) |
| 93 | assert.NilError(t, err) |
| 94 | return out |
| 95 | } |
| 96 | |
| 97 | // Deprecated: use cli.Docker |
| 98 | func inspectFieldJSON(t *testing.T, name, field string) string { |
no test coverage detected
searching dependent graphs…