1//! Utils for unit testing actors. 2 3#![cfg_attr(docsrs, feature(doc_cfg))] 4 5pub use proxy::{proxy, Proxy}; 6pub use utils::{extract_message, extract_request}; 7 8#[cfg(feature = "unstable")] 9pub use proxy::proxy_with_route; 10 11mod proxy; 12mod utils;