(ctx context.Context)
| 128 | } |
| 129 | |
| 130 | func (m MockClient) Ping(ctx context.Context) (dockertypes.Ping, error) { |
| 131 | if m.PingFn == nil { |
| 132 | return dockertypes.Ping{}, nil |
| 133 | } |
| 134 | return m.PingFn(ctx) |
| 135 | } |
| 136 | |
| 137 | func (MockClient) ContainerAttach(_ context.Context, _ string, _ containertypes.AttachOptions) (dockertypes.HijackedResponse, error) { |
| 138 | panic("not implemented") |