mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
12 lines
153 B
Go
12 lines
153 B
Go
package netx
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestInternalIp(t *testing.T) {
|
|
assert.True(t, len(InternalIp()) > 0)
|
|
}
|