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.
|
package cache |
|
|
|
import ( |
|
"testing" |
|
) |
|
|
|
func Test_RedisURI(t *testing.T) { |
|
cache, err := New("redis://127.0.0.1:6389") |
|
|
|
if err != nil { |
|
t.Fatal("Error creating cache:", err) |
|
} |
|
|
|
if _, ok := cache.(*RedisCache); !ok { |
|
t.Fatal("Cache is not instance of RedisCache") |
|
} |
|
}
|
|
|