(context.Context, string, client.NodeInspectOptions)
| 19 | } |
| 20 | |
| 21 | func (cli *fakeClient) NodeInspect(context.Context, string, client.NodeInspectOptions) (client.NodeInspectResult, error) { |
| 22 | if cli.nodeInspectFunc != nil { |
| 23 | return cli.nodeInspectFunc() |
| 24 | } |
| 25 | return client.NodeInspectResult{}, nil |
| 26 | } |
| 27 | |
| 28 | func (cli *fakeClient) NodeList(context.Context, client.NodeListOptions) (client.NodeListResult, error) { |
| 29 | if cli.nodeListFunc != nil { |
no outgoing calls
no test coverage detected