mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-21 00:21:49 +00:00
6 lines
152 B
Rust
6 lines
152 B
Rust
use litellm_cache_redis::RedisCache;
|
|
|
|
#[test]
|
|
fn constructor_rejects_invalid_urls() {
|
|
assert!(RedisCache::new("not a redis url", None).is_err());
|
|
}
|