Files
grafana/pkg/infra/distcache/memory_storage_test.go
T
2019-03-11 10:49:09 +01:00

13 lines
229 B
Go

package distcache
import (
"testing"
"github.com/grafana/grafana/pkg/setting"
)
func TestMemoryCacheStorage(t *testing.T) {
opts := &setting.CacheOpts{Name: "memory"}
runTestsForClient(t, createTestClient(t, opts, nil))
}