go-zero/core/sysx/host_test.go

12 lines
149 B
Go
Raw Permalink Normal View History

2020-07-26 17:09:05 +08:00
package sysx
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHostname(t *testing.T) {
assert.True(t, len(Hostname()) > 0)
}