(args []string)
| 233 | } |
| 234 | |
| 235 | func (f *Framework) DevPodMachineDelete(args []string) error { |
| 236 | baseArgs := []string{"machine", "delete"} |
| 237 | baseArgs = append(baseArgs, args...) |
| 238 | err := f.ExecCommand(context.Background(), false, false, "", baseArgs) |
| 239 | if err != nil { |
| 240 | return fmt.Errorf("devpod nachine delete failed: %s", err.Error()) |
| 241 | } |
| 242 | return nil |
| 243 | } |
| 244 | |
| 245 | func (f *Framework) DevPodWorkspaceStop(ctx context.Context, extraArgs ...string) error { |
| 246 | baseArgs := []string{"stop"} |
no test coverage detected