memcached_storage_integration_test.go 295 B

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