1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2026-05-16 09:20:15 +02:00
Files
goreleaser/uname/uname_test.go
T
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"))
}