mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
15 lines
254 B
Go
15 lines
254 B
Go
|
|
package dao
|
||
|
|
|
||
|
|
import (
|
||
|
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestDelWalletCache(t *testing.T) {
|
||
|
|
Convey("Test Del Memcache", t, func() {
|
||
|
|
once.Do(startService)
|
||
|
|
err := d.DelWalletCache(ctx, 10000)
|
||
|
|
So(err, ShouldBeNil)
|
||
|
|
})
|
||
|
|
}
|