xframe/base/sysx/host_test.go

12 lines
149 B
Go
Raw Normal View History

2024-10-12 12:55:20 +08:00
package sysx
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHostname(t *testing.T) {
assert.True(t, len(Hostname()) > 0)
}