grafana/pkg/infra/remotecache/redis_storage_integration_test.go
2019-03-11 10:49:55 +01:00

16 lines
283 B
Go

// +build redis
package remotecache
import (
"testing"
"github.com/grafana/grafana/pkg/setting"
)
func TestRedisCacheStorage(t *testing.T) {
opts := &setting.RemoteCacheOptions{Name: "redis", ConnStr: "localhost:6379"}
runTestsForClient(t, createTestClient(t, opts, nil))
}