go-common/app/job/main/app-wall/dao/offer/redis_test.go

15 lines
211 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package offer
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestPushFail(t *testing.T) {
Convey("PushFail", t, func() {
err := d.PushFail(ctx(), "")
So(err, ShouldBeNil)
})
}