//! Ephemeral Valkey/Redis container for `RedisNotifier` integration tests.
//!
//! Same pattern as `pg.rs` — one container per call, handle held alive
//! by the caller so dropping it stops the container.
use ContainerAsync;
use Redis;
use AsyncRunner;
/// Spin a fresh Redis container, return its handle plus the
/// `redis://host:port` URL ready to hand to `RedisNotifier::new(...)`.
pub async