mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-07 13:31:37 +02:00
14 lines
215 B
Go
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"))
|
|
}
|