1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-03 00:57:43 +02:00
Files
goreleaser/pipeline/compress/compress_test.go
Carlos Alexandro Becker 6e2fcec4ce gofmt
2016-12-31 14:07:58 -02:00

16 lines
228 B
Go

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