(ctx context.Context, args ...string)
| 202 | } |
| 203 | |
| 204 | func (f *Framework) DevPodProviderDelete(ctx context.Context, args ...string) error { |
| 205 | baseArgs := []string{"provider", "delete"} |
| 206 | baseArgs = append(baseArgs, args...) |
| 207 | err := f.ExecCommand(ctx, false, false, "", baseArgs) |
| 208 | if err != nil { |
| 209 | return err |
| 210 | } |
| 211 | |
| 212 | return nil |
| 213 | } |
| 214 | |
| 215 | func (f *Framework) DevPodProviderUpdate(ctx context.Context, args ...string) error { |
| 216 | baseArgs := []string{"provider", "update"} |
no test coverage detected