bilibili-backup/app/admin/main/answer/dao/redis_test.go
2019-04-22 02:59:20 +00:00

16 lines
259 B
Go

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