redis_storage_integration_test.go 283 B

123456789101112131415
  1. // +build redis
  2. package remotecache
  3. import (
  4. "testing"
  5. "github.com/grafana/grafana/pkg/setting"
  6. )
  7. func TestRedisCacheStorage(t *testing.T) {
  8. opts := &setting.RemoteCacheOptions{Name: "redis", ConnStr: "localhost:6379"}
  9. runTestsForClient(t, createTestClient(t, opts, nil))
  10. }