mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 06:22:13 +08:00
15 lines
307 B
Go
15 lines
307 B
Go
package util
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestParseIPAddress(t *testing.T) {
|
|
Convey("Test parse ip address", t, func() {
|
|
So(ParseIPAddress("192.168.0.140:456"), ShouldEqual, "192.168.0.140")
|
|
So(ParseIPAddress("[::1:456]"), ShouldEqual, "127.0.0.1")
|
|
})
|
|
}
|