(_ context.Context, name string, _ client.PluginInspectOptions)
| 63 | } |
| 64 | |
| 65 | func (c *fakeClient) PluginInspect(_ context.Context, name string, _ client.PluginInspectOptions) (client.PluginInspectResult, error) { |
| 66 | if c.pluginInspectFunc != nil { |
| 67 | return c.pluginInspectFunc(name) |
| 68 | } |
| 69 | return client.PluginInspectResult{}, nil |
| 70 | } |
| 71 | |
| 72 | func (*fakeClient) Info(context.Context, client.InfoOptions) (client.SystemInfoResult, error) { |
| 73 | return client.SystemInfoResult{}, nil |
no outgoing calls
no test coverage detected