callback_test.go 478 B

123456789101112131415161718192021222324
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/service/main/workflow/model"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoCallback(t *testing.T) {
  9. var (
  10. c = context.Background()
  11. chall = &model.Challenge{}
  12. businessID = int8(6)
  13. )
  14. convey.Convey("Callback", t, func(ctx convey.C) {
  15. err := d.Callback(c, chall, businessID)
  16. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. })
  19. })
  20. }