17 lines
299 B
Go
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)
|
||
|
}))
|
||
|
}
|