1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-15 11:56:56 +02:00
goreleaser/pipeline/compress/compress_test.go
Carlos Alexandro Becker 84b5954f47
fix test
2017-01-06 11:14:55 -02:00

16 lines
234 B
Go

package compress
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestExtWindows(t *testing.T) {
assert.Equal(t, extFor("windows"), ".exe")
}
func TestExtOthers(t *testing.T) {
assert.Empty(t, extFor("linux"))
}