2019-04-22 02:59:20 +00:00

15 lines
211 B
Go

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)
})
}