13 lines
229 B
Go
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))
|
|
}
|