tower/tower-test
Jon Gjengset 233aab1988
Obviate need for as_mut to assert_request_eq (#327)
Calling a method on `Pin<&mut Self>` moves the pin, which means you can't call more methods later. The solution to this is to use `Pin::as_mut`. But it's annoying to have to do that to _every_ call to the `assert_request_eq!` helper macro from `tower-test`, so I made it do it for me.
2019-09-09 15:28:41 -04:00
..
src Obviate need for as_mut to assert_request_eq (#327) 2019-09-09 15:28:41 -04:00
tests Update tower-test to std::future::Future (#316) 2019-09-03 10:26:46 -04:00
CHANGELOG.md Prepare release (#273) 2019-04-26 21:31:25 -07:00
Cargo.toml Update tower-test to std::future::Future (#316) 2019-09-03 10:26:46 -04:00
LICENSE Prepare release (#273) 2019-04-26 21:31:25 -07:00
README.md chore: fix small errors in Cargo files 2019-04-26 22:31:07 -07:00

README.md

Tower Test

Utilities for writing client and server Service tests.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tower by you, shall be licensed as MIT, without any additional terms or conditions.