packer-cn/packer-plugin-sdk/useragent/useragent_test.go

20 lines
328 B
Go
Raw Normal View History

package useragent
import (
"testing"
)
func TestUserAgent(t *testing.T) {
projectURL = "https://packer-test.com"
rt = "go5.0"
2018-04-05 14:25:11 -04:00
goos = "linux"
goarch = "amd64"
act := String("1.2.3")
2018-04-05 14:25:11 -04:00
exp := "Packer/1.2.3 (+https://packer-test.com; go5.0; linux/amd64)"
if exp != act {
t.Errorf("expected %q to be %q", act, exp)
}
}