bilibili-backup/app/admin/main/answer/dao/redis_test.go

16 lines
259 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package dao
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDaoSetQidCache(t *testing.T) {
convey.Convey("SetQidCache", t, func() {
err := d.SetQidCache(context.TODO(), 0)
convey.So(err, convey.ShouldBeNil)
})
}