up_bill_test.go 572 B

12345678910111213141516171819202122232425
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoGetUpBill(t *testing.T) {
  8. convey.Convey("GetUpBill", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. mid = int64(1001)
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. Exec(c, "INSERT INTO up_bill(mid) VALUES(1001)")
  15. up, err := d.GetUpBill(c, mid)
  16. ctx.Convey("Then err should be nil.up should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(up, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }