You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
505 B
24 lines
505 B
package service |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestService_Kv(t *testing.T) { |
|
Convey("test baidu Kv", t, WithService(func(s *Service) { |
|
res, err := s.Kv(context.Background()) |
|
So(err, ShouldBeNil) |
|
So(len(res), ShouldBeGreaterThan, 0) |
|
})) |
|
} |
|
|
|
func TestService_CmtBox(t *testing.T) { |
|
Convey("test cmtbox", t, WithService(func(s *Service) { |
|
res, err := s.CmtBox(context.Background(), 1) |
|
So(err, ShouldBeNil) |
|
So(res, ShouldNotBeNil) |
|
})) |
|
}
|
|
|