memcached_storage_integration_test.go 320 B

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