Struct wiremock::matchers::MethodExactMatcher
source · pub struct MethodExactMatcher(_);
Expand description
Match exactly the method of a request.
Example:
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::method;
#[async_std::main]
async fn main() {
// Arrange
let mock_server = MockServer::start().await;
let response = ResponseTemplate::new(200);
let mock = Mock::given(method("GET")).respond_with(response);
mock_server.register(mock).await;
// Act
let status = surf::get(&mock_server.uri())
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Implementations§
Trait Implementations§
source§impl Debug for MethodExactMatcher
impl Debug for MethodExactMatcher
Auto Trait Implementations§
impl RefUnwindSafe for MethodExactMatcher
impl Send for MethodExactMatcher
impl Sync for MethodExactMatcher
impl Unpin for MethodExactMatcher
impl UnwindSafe for MethodExactMatcher
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more