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

15 lines
295 B
Go

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