memcache_test.go 388 B

1234567891011121314151617181920
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_statsCache(t *testing.T) {
  8. Convey("should get statsCache", t, func() {
  9. d.statsCache(context.Background(), []int64{1, 2, 3, 4})
  10. })
  11. }
  12. func Test_arcsCache(t *testing.T) {
  13. Convey("should get arcsCache", t, func() {
  14. d.arcsCache(context.Background(), []int64{1, 2, 3, 4})
  15. })
  16. }