hodoku

github crates.io docs.rs build status

A simple set of macros to aid testing with try operations.

It is syntactically desirable to use ?. This however causes issues during testing, because a failing test lacks stack traces which would help you to track down the exact line that failed.

This crate allows for easily writing functions and expression where ? is automatically translated into .unwrap().

Examples

License: MIT/Apache 2.0