mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
15 lines
295 B
Go
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))
|
|
}
|