forbid_test.go 710 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_Forbids(t *testing.T) {
  8. Convey("Forbids", t, func() {
  9. fs, err := d.Forbids(context.TODO())
  10. So(err, ShouldBeNil)
  11. Println(fs)
  12. })
  13. }
  14. func Test_UpForbid(t *testing.T) {
  15. Convey("UpForbid", t, func() {
  16. _, err := d.UpForbid(context.TODO(), 1, 1, 1, 1)
  17. So(err, ShouldBeNil)
  18. })
  19. }
  20. func Test_ForbidMids(t *testing.T) {
  21. Convey("ForbidMids", t, func() {
  22. mids, err := d.ForbidMids(context.TODO())
  23. So(err, ShouldBeNil)
  24. Println(mids)
  25. })
  26. }
  27. func Test_UpForbidMid(t *testing.T) {
  28. Convey("UpForbidMid", t, func() {
  29. err := d.UpMidForbidStatus(context.TODO(), 1684013, 0)
  30. So(err, ShouldBeNil)
  31. })
  32. }