1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

Merge pull request #17 from goreleaser/more-tests

uname tests
This commit is contained in:
Carlos Alexandro Becker 2016-12-31 13:27:24 -02:00 committed by GitHub
commit 220ffa65af

12
uname/uname_test.go Normal file
View File

@ -0,0 +1,12 @@
package uname
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestUname(t *testing.T) {
assert := assert.New(t)
assert.Equal("Darwin", FromGo("darwin"))
assert.Equal("blah", FromGo("blah"))
}