| 227 | } |
| 228 | |
| 229 | func (f *fakeClient) ContainerCommit(ctx context.Context, containerID string, options client.ContainerCommitOptions) (client.ContainerCommitResult, error) { |
| 230 | if f.containerCommitFunc != nil { |
| 231 | return f.containerCommitFunc(ctx, containerID, options) |
| 232 | } |
| 233 | return client.ContainerCommitResult{}, nil |
| 234 | } |
| 235 | |
| 236 | func (f *fakeClient) ContainerPause(ctx context.Context, containerID string, options client.ContainerPauseOptions) (client.ContainerPauseResult, error) { |
| 237 | if f.containerPauseFunc != nil { |