summaryrefslogtreecommitdiff
path: root/pkg/machine/e2e/config_start_test.go
blob: d9efbf48919a51e310559bd3bca816fed0ffc49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}