mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
15 lines
281 B
Go
15 lines
281 B
Go
// +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)
|
|
}
|
|
}
|