21 lines
369 B
Go
21 lines
369 B
Go
package useragent
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestUserAgent(t *testing.T) {
|
|
projectURL = "https://packer-test.com"
|
|
rt = "go5.0"
|
|
goos = "linux"
|
|
goarch = "amd64"
|
|
versionFunc = func() string { return "1.2.3" }
|
|
|
|
act := String()
|
|
|
|
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)
|
|
}
|
|
}
|