bilibili-backup/app/job/live/wallet/dao/mc_wallet_test.go

15 lines
254 B
Go
Raw Permalink Normal View History

2019-04-22 10:59:20 +08:00
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)
})
}