You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-09-16 09:26:52 +02:00
test: fix broken test
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
4
main.go
4
main.go
@@ -24,6 +24,8 @@ func main() {
|
||||
)
|
||||
}
|
||||
|
||||
const website = "\n\nhttps://goreleaser.com"
|
||||
|
||||
func buildVersion(version, commit, date, builtBy string) string {
|
||||
result := version
|
||||
if commit != "" {
|
||||
@@ -38,5 +40,5 @@ func buildVersion(version, commit, date, builtBy string) string {
|
||||
if info, ok := debug.ReadBuildInfo(); ok && info.Main.Sum != "" {
|
||||
result = fmt.Sprintf("%s\nmodule version: %s, checksum: %s", result, info.Main.Version, info.Main.Sum)
|
||||
}
|
||||
return result + "\n\nhttps://goreleaser.com"
|
||||
return result + website
|
||||
}
|
||||
|
10
main_test.go
10
main_test.go
@@ -12,29 +12,29 @@ func TestVersion(t *testing.T) {
|
||||
out string
|
||||
}{
|
||||
"all empty": {
|
||||
out: "",
|
||||
out: website,
|
||||
},
|
||||
"complete": {
|
||||
version: "1.2.3",
|
||||
date: "12/12/12",
|
||||
commit: "aaaa",
|
||||
builtBy: "me",
|
||||
out: "1.2.3\ncommit: aaaa\nbuilt at: 12/12/12\nbuilt by: me",
|
||||
out: "1.2.3\ncommit: aaaa\nbuilt at: 12/12/12\nbuilt by: me" + website,
|
||||
},
|
||||
"only version": {
|
||||
version: "1.2.3",
|
||||
out: "1.2.3",
|
||||
out: "1.2.3" + website,
|
||||
},
|
||||
"version and date": {
|
||||
version: "1.2.3",
|
||||
date: "12/12/12",
|
||||
out: "1.2.3\nbuilt at: 12/12/12",
|
||||
out: "1.2.3\nbuilt at: 12/12/12" + website,
|
||||
},
|
||||
"version, date, built by": {
|
||||
version: "1.2.3",
|
||||
date: "12/12/12",
|
||||
builtBy: "me",
|
||||
out: "1.2.3\nbuilt at: 12/12/12\nbuilt by: me",
|
||||
out: "1.2.3\nbuilt at: 12/12/12\nbuilt by: me" + website,
|
||||
},
|
||||
} {
|
||||
tt := tt
|
||||
|
Reference in New Issue
Block a user