go-common/app/interface/main/web/service/ip_test.go

17 lines
299 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
}))
}