xframe/base/sysx/host_test.go

12 lines
149 B
Go
Executable File

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