1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-18 03:56:52 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-01-06 11:14:55 -02:00
parent d715fe38a2
commit 84b5954f47
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -7,9 +7,9 @@ import (
)
func TestExtWindows(t *testing.T) {
assert.Equal(t, ext("windows"), ".exe")
assert.Equal(t, extFor("windows"), ".exe")
}
func TestExtOthers(t *testing.T) {
assert.Empty(t, ext("linux"))
assert.Empty(t, extFor("linux"))
}