go-zero/core/sysx/host_test.go
2020-07-26 17:09:05 +08:00

12 lines
149 B
Go

package sysx
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHostname(t *testing.T) {
assert.True(t, len(Hostname()) > 0)
}