2019-04-22 02:59:20 +00:00

17 lines
299 B
Go

package service
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestService_IPZone(t *testing.T) {
Convey("test ip IPZone", t, WithService(func(s *Service) {
res, err := s.IPZone(context.Background())
So(err, ShouldBeNil)
So(res, ShouldNotBeNil)
}))
}