open-nomad/helper/useragent/useragent_test.go
2023-04-10 15:36:59 +00:00

22 lines
389 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package useragent
import (
"testing"
)
func TestUserAgent(t *testing.T) {
projectURL = "https://nomad-test.com"
rt = "go5.0"
versionFunc = func() string { return "1.2.3" }
act := String()
exp := "Nomad/1.2.3 (+https://nomad-test.com; go5.0)"
if exp != act {
t.Errorf("expected %q to be %q", act, exp)
}
}