(_ context.Context, options client.NodeListOptions)
| 115 | } |
| 116 | |
| 117 | func (cli *fakeClient) NodeList(_ context.Context, options client.NodeListOptions) (client.NodeListResult, error) { |
| 118 | if cli.nodeListFunc != nil { |
| 119 | return cli.nodeListFunc(options) |
| 120 | } |
| 121 | return client.NodeListResult{}, nil |
| 122 | } |
| 123 | |
| 124 | func (cli *fakeClient) NodeInspect(_ context.Context, ref string, _ client.NodeInspectOptions) (client.NodeInspectResult, error) { |
| 125 | if cli.nodeInspectFunc != nil { |
no outgoing calls
no test coverage detected