assert2 0.4.0

assert!(...) and check!(...) macros inspired by Catch2, now with diffs!
Documentation
1
2
3
4
5
6
7
8
9
#![allow(deprecated)]

use assert2::{assert, let_assert};

#[test]
fn let_assert_still_works() {
	let_assert!(Some(x) = Some(10));
	assert!(x == 10);
}