redis_storage_integration_test.go 308 B

12345678910111213141516
  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: redisCacheType, ConnStr: "localhost:6379"}
  9. client := createTestClient(t, opts, nil)
  10. runTestsForClient(t, client)
  11. }