(ctx context.Context, options client.VolumeListOptions)
| 56 | } |
| 57 | |
| 58 | func (c *fakeClient) VolumeList(ctx context.Context, options client.VolumeListOptions) (client.VolumeListResult, error) { |
| 59 | if c.volumeListFunc != nil { |
| 60 | return c.volumeListFunc(ctx, options) |
| 61 | } |
| 62 | return client.VolumeListResult{}, nil |
| 63 | } |
| 64 | |
| 65 | func TestCompleteContainerNames(t *testing.T) { |
| 66 | tests := []struct { |