1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-15 11:56:56 +02:00
goreleaser/uname/uname_test.go

14 lines
215 B
Go
Raw Normal View History

2016-12-31 13:24:26 -02:00
package uname
import (
"testing"
2016-12-31 14:07:58 -02:00
2016-12-31 13:24:26 -02:00
"github.com/stretchr/testify/assert"
)
func TestUname(t *testing.T) {
assert := assert.New(t)
assert.Equal("Darwin", FromGo("darwin"))
assert.Equal("blah", FromGo("blah"))
}