mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
uname tests
This commit is contained in:
parent
ca8443938c
commit
4011a32ab5
12
uname/uname_test.go
Normal file
12
uname/uname_test.go
Normal 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"))
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user