memory_storage_test.go 229 B

123456789101112
  1. package distcache
  2. import (
  3. "testing"
  4. "github.com/grafana/grafana/pkg/setting"
  5. )
  6. func TestMemoryCacheStorage(t *testing.T) {
  7. opts := &setting.CacheOpts{Name: "memory"}
  8. runTestsForClient(t, createTestClient(t, opts, nil))
  9. }