tower_test/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
#![warn(
    missing_debug_implementations,
    missing_docs,
    rust_2018_idioms,
    unreachable_pub
)]
#![allow(elided_lifetimes_in_paths)]

//! Mock `Service` that can be used in tests.

mod macros;
pub mod mock;