mc_wallet_test.go 254 B

1234567891011121314
  1. package dao
  2. import (
  3. . "github.com/smartystreets/goconvey/convey"
  4. "testing"
  5. )
  6. func TestDelWalletCache(t *testing.T) {
  7. Convey("Test Del Memcache", t, func() {
  8. once.Do(startService)
  9. err := d.DelWalletCache(ctx, 10000)
  10. So(err, ShouldBeNil)
  11. })
  12. }