assert2ify 0.1.0-alpha1

A one-liner solution to replace assertions in tests by the expressive assertions of the assert2 crate
Documentation
1
2
3
4
5
6
7
8
9
/// helper macro that just passes the given tokens unaltered
#[macro_export]
macro_rules! identity {
    ($($tokens:tt)+) => {$($tokens)+}
}

// macro_rules! make_test {
//     ($test_name:ident, $(body:))
// }