asserhttp
asserhttp copied to clipboard
Fluent http assertions
Hello, this is the minimal example I could make: ```rust fn main() { } #[cfg(test)] mod tests { #[tokio::test] async fn test() { use asserhttp::*; let mut response = reqwest::get("https://github.com").await.unwrap();...
Hey, the Axum sample test from the docs does not currently compile and yields the following error message: "error[E5099]: no method named `expect_status_ok` found for enum `Result` in the current...
Updates the requirements on [tonic](https://github.com/hyperium/tonic) to permit the latest version. Changelog Sourced from tonic's changelog. (2024-02-08) BREAKING CHANGES: Removed NamedService from the transport module, please import it via tonic::server::NamedService. MSRV...
Bumps [arduino/setup-protoc](https://github.com/arduino/setup-protoc) from 2 to 3. Release notes Sourced from arduino/setup-protoc's releases. v3.0.0 What's Changed Correct convetion typo in README by @nixpanic in arduino/setup-protoc#91 Bump @babel/traverse from 7.22.1 to 7.23.2...
Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. Release notes Sourced from hyper's releases. v1.1.0 Features client: add http1::Connection without_shutdown() method (#3430) (210bfaa7) http1: Add support for sending...
Updates the requirements on [axum](https://github.com/tokio-rs/axum) to permit the latest version. Release notes Sourced from axum's releases. axum-extra - v0.7.1 Updated to latest axum-macros Commits 773bb5d axum 0.7.1 e63cc49 Update unix-domain-socket,...
Updates the requirements on [tower-http](https://github.com/tower-rs/tower-http) to permit the latest version. Release notes Sourced from tower-http's releases. v0.5.0 Changed Bump Minimum Supported Rust Version to 1.66 (#433) Update to http-body 1.0...
Updates the requirements on [prost](https://github.com/tokio-rs/prost) to permit the latest version. Commits 10582c2 release 0.12.0 7ce9b97 feat: Name trait + Any encoding support (#896) f9a3cff Make Debug impl optional for types...
Hi, I just discovered `asserthttp`, and this looks pretty useful! Have you thought about adding variants of the `expect_*` methods that don't panic (i.e., return `Result`) ? This would make...