(ctx context.Context, parentReference string, options client.ImagePullOptions)
| 102 | } |
| 103 | |
| 104 | func (f *fakeClient) ImagePull(ctx context.Context, parentReference string, options client.ImagePullOptions) (client.ImagePullResponse, error) { |
| 105 | if f.imagePullFunc != nil { |
| 106 | return f.imagePullFunc(ctx, parentReference, options) |
| 107 | } |
| 108 | return fakeStreamResult{}, nil |
| 109 | } |
| 110 | |
| 111 | func (f *fakeClient) Info(context.Context, client.InfoOptions) (client.SystemInfoResult, error) { |
| 112 | if f.infoFunc != nil { |