tower_test/
lib.rs

1#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
2#![warn(
3    missing_debug_implementations,
4    missing_docs,
5    rust_2018_idioms,
6    unreachable_pub
7)]
8#![allow(elided_lifetimes_in_paths)]
9
10//! Mock `Service` that can be used in tests.
11
12mod macros;
13pub mod mock;