dao.cache_test.go 545 B

123456789101112131415161718192021222324
  1. package kfc
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestKfcKfcCoupon(t *testing.T) {
  8. convey.Convey("KfcCoupon", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. id = int64(3)
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. res, err := d.KfcCoupon(c, id)
  15. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(err, convey.ShouldBeNil)
  17. convCtx.So(res, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }