summaryrefslogtreecommitdiff
path: root/pkg/machine/e2e/config_start_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/machine/e2e/config_start_test.go')
-rw-r--r--pkg/machine/e2e/config_start_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/machine/e2e/config_start_test.go b/pkg/machine/e2e/config_start_test.go
new file mode 100644
index 000000000..d9efbf489
--- /dev/null
+++ b/pkg/machine/e2e/config_start_test.go
@@ -0,0 +1,15 @@
+package e2e_test
+
+type startMachine struct {
+ /*
+ No command line args other than a machine vm name (also not required)
+ */
+}
+
+func (s startMachine) buildCmd(m *machineTestBuilder) []string {
+ cmd := []string{"machine", "start"}
+ if len(m.name) > 0 {
+ cmd = append(cmd, m.name)
+ }
+ return cmd
+}