1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-13 13:48:40 +02:00
goreleaser/uname/uname_test.go

13 lines
214 B
Go
Raw Normal View History

2016-12-31 13:24:26 -02:00
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"))
}