12345678910111213141516 |
- 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)
- }))
- }
|