You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/builder/vmware/common/driver_workstation_unix_tes...

16 lines
281 B

// +build !windows
package common
import (
"testing"
)
func TestWorkstationVersion_ws14(t *testing.T) {
input := `VMware Workstation Information:
VMware Workstation 14.1.1 build-7528167 Release`
if err := workstationTestVersion("10", input); err != nil {
t.Fatal(err)
}
}