1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-07 13:31:37 +02:00
goreleaser/uname/uname_test.go
Carlos Alexandro Becker 6e2fcec4ce
gofmt
2016-12-31 14:07:58 -02:00

14 lines
215 B
Go

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"))
}