elfo-test 0.2.0-alpha.21

Test utils for the elfo system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Utils for unit testing actors.

#![cfg_attr(docsrs, feature(doc_cfg))]

pub use proxy::{proxy, Proxy};
pub use utils::{extract_message, extract_request};

#[cfg(feature = "unstable")]
pub use proxy::proxy_with_route;

mod proxy;
mod utils;