diff --git a/src/net/mod.rs b/src/net/mod.rs index 2727df3..014b747 100644 --- a/src/net/mod.rs +++ b/src/net/mod.rs @@ -95,12 +95,6 @@ //! # } //! ``` //! -//! All [MatchOn] options: -//! - [MatchOn::Method] (default) -//! - [MatchOn::Url] (default) -//! - [MatchOn::Headers] -//! - [MatchOn::Body]. -//! //! Once you have defined all your expected responses, convert the [MockNet] into a [Net]. //! //! ```rust @@ -155,7 +149,7 @@ mod system; pub use result::{Error, Result}; -pub use system::{MatchOn, MockNet, Net}; +pub use system::{MockNet, Net}; pub use http::HeaderMap; pub use http::Method; diff --git a/src/net/system.rs b/src/net/system.rs index 2d257de..5559307 100644 --- a/src/net/system.rs +++ b/src/net/system.rs @@ -12,22 +12,6 @@ use super::{Error, Result}; /// A list of planned requests and responses type Plans = Vec; -/// The different ways to match a request. -#[derive(Debug, PartialEq, Eq)] -pub enum MatchOn { - /// The request must have a specific HTTP Request Method. - Method, - - /// The request must have a specific URL. - Url, - - /// The request must have a specify HTTP Body. - Body, - - /// The request must have a specific set of HTTP Headers. - Headers, -} - /// A planned request and the response to return /// /// Contains a list of the criteria that a request must meet before being considered a match.