redis_test.go 211 B

1234567891011121314
  1. package offer
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestPushFail(t *testing.T) {
  7. Convey("PushFail", t, func() {
  8. err := d.PushFail(ctx(), "")
  9. So(err, ShouldBeNil)
  10. })
  11. }