tower-async-test 0.1.0
·
61 commits
to master
since this release
This is the initial realse of tower-async-test
, a fork of https://github.com/tower-rs/tower and makes use of async traits
(RFC-3185: Static async fn in traits)
to simplify things and make it more easier to integrate async functions into middleware.
This library is very different however then tower-test
, as we have a lot less things to validate,
thanks to the simplification of the tower-async
's Service contract. The approach in how we aid in writing
layer tests is also different, where we make use of a black box builder approach, instead
of the macro util approach taken by tower-test
.