You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
292 B
15 lines
292 B
4 years ago
|
package memcache_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"gitoa.ru/go-4devs/cache"
|
||
|
"gitoa.ru/go-4devs/cache/provider/memcache"
|
||
|
"gitoa.ru/go-4devs/cache/test"
|
||
|
)
|
||
|
|
||
|
func TestProvider(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
test.RunSute(t, memcache.New(test.MemcacheClient()), test.WithExpire(cache.ErrCacheMiss))
|
||
|
}
|