mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			341 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			341 B
		
	
	
	
		
			Go
		
	
	
	
| //go:build memcached
 | |
| // +build memcached
 | |
| 
 | |
| package remotecache
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/grafana/grafana/pkg/setting"
 | |
| )
 | |
| 
 | |
| func TestMemcachedCacheStorage(t *testing.T) {
 | |
| 	opts := &setting.RemoteCacheOptions{Name: memcachedCacheType, ConnStr: "localhost:11211"}
 | |
| 	client := createTestClient(t, opts, nil)
 | |
| 	runTestsForClient(t, client)
 | |
| }
 |