mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
19 lines
258 B
Go
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)
|
||
|
|
})
|
||
|
|
}
|