grafana/pkg/infra/remotecache/redis_storage_integration_test.go
2021-09-01 17:38:56 +03:00

18 lines
330 B
Go

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