mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-13 13:48:40 +02:00
13 lines
214 B
Go
13 lines
214 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"))
|
||
|
}
|