go-common/app/job/main/feed/dao/dao_test.go

19 lines
258 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
})
}