Method
ContainerExport
(_ context.Context, containerID string, _ client.ContainerExportOptions)
Source from the content-addressed store, hash-verified
| 162 | } |
| 163 | |
| 164 | func (f *fakeClient) ContainerExport(_ context.Context, containerID string, _ client.ContainerExportOptions) (client.ContainerExportResult, error) { |
| 165 | if f.containerExportFunc != nil { |
| 166 | return f.containerExportFunc(containerID) |
| 167 | } |
| 168 | return http.NoBody, nil |
| 169 | } |
| 170 | |
| 171 | func (f *fakeClient) ExecResize(_ context.Context, id string, options client.ExecResizeOptions) (client.ExecResizeResult, error) { |
| 172 | if f.containerExecResizeFunc != nil { |
Tested by
no test coverage detected