(_ context.Context, img string, _ ...client.ImageInspectOption)
| 102 | } |
| 103 | |
| 104 | func (cli *fakeClient) ImageInspect(_ context.Context, img string, _ ...client.ImageInspectOption) (client.ImageInspectResult, error) { |
| 105 | if cli.imageInspectFunc != nil { |
| 106 | return cli.imageInspectFunc(img) |
| 107 | } |
| 108 | return client.ImageInspectResult{}, nil |
| 109 | } |
| 110 | |
| 111 | func (cli *fakeClient) ImageImport(_ context.Context, source client.ImageImportSource, ref string, options client.ImageImportOptions) (client.ImageImportResult, error) { |
| 112 | if cli.imageImportFunc != nil { |
no outgoing calls
no test coverage detected