facilitest 1.0.0

Utilities that facilitate testing
Documentation
1
2
3
4
5
6
7
8
9
10
pub use facilitest_macros::{build_ident, make_test_fn};

#[macro_export]
macro_rules! test_p {
    ($func:path, ($($suffix:ident: ($($arg:expr),*), $expected:expr)*)) => {
    $(
        make_test_fn!($func, $suffix, ($($arg,)*), $expected);
    )*
    }
}