rusty-fork
rusty-fork copied to clipboard
Add optional return type to rusty_test functions
This PR allow to use rusty_fork_test! tests having a return type :
rusty_fork_test! {
#[test]
fn trivial() { }
#[test]
fn trivial_with_return() -> Result<(), &'static str> { Ok(()) }
}