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