recommend_up_test.go 493 B

12345678910111213141516171819202122
  1. package newbiedao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestNewbiedaoGetRecommendUpList(t *testing.T) {
  8. convey.Convey("GetRecommendUpList", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. )
  12. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  13. err := d.GetRecommendUpList(c)
  14. ctx.Convey("Then err should be nil.recUps should not be nil.", func(ctx convey.C) {
  15. ctx.So(err, convey.ShouldBeNil)
  16. })
  17. })
  18. })
  19. }