letter_test.go 603 B

12345678910111213141516171819202122232425
  1. package newbie
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestNewbieLetter(t *testing.T) {
  9. convey.Convey("Letter", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. req = &model.NewbieLetterReq{Aid: 10110467, Mid: 27515398}
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1, err := s.Letter(c, req)
  16. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(p1, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }