go-common/app/job/main/feed/dao/dao_test.go
2019-04-22 18:49:16 +08:00

19 lines
258 B
Go

package dao
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_Dao(t *testing.T) {
var err error
d := New(nil)
Convey("set cache", t, func() {
PromError("")
PromInfo("")
err = d.SendSMS("")
So(err, ShouldBeNil)
})
}