mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
16 lines
283 B
Go
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))
|
|
}
|