4 releases (2 breaking)
0.7.1 | Mar 15, 2024 |
---|---|
0.6.1 | Oct 22, 2022 |
0.6.0 | Dec 11, 2019 |
0.5.0 | Dec 10, 2019 |
#87 in #better
2KB
Deprecated — use assert2
Use assert2 instead of this crate. assertify!
can be replaced by the
more capable assert2::assert!
everywhere, and testify!
can implemented
with a short macro:
macro_rules! testify {
($name:ident, $($test:tt)+) => {
#[test]
fn $name() {
::assert2::assert!($($test)+);
}
};
}
lib.rs
:
Deprecated. Use assert2 instead.