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

25 lines
505 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_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)
}))
}