1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +02:00

test: fix broken test

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker
2021-07-24 00:27:20 -03:00
parent 6ecddbd7e9
commit 0935faf8e2
2 changed files with 8 additions and 6 deletions

View File

@@ -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