assert2 0.4.0

assert!(...) and check!(...) macros inspired by Catch2, now with diffs!
Documentation
use assert2::check;
use assert2::assert;
use std::fs::File;
use std::io::ErrorKind;

#[allow(clippy::nonminimal_bool)]
pub fn main() {
	check!(6 + 1 <= 2 * 3);
	check!(5 < 6);
	check!(true && false);
	check!(let Ok(_) = File::open("/non/existing/file"));

	assert!(let Err(e) = File::open("/non/existing/file"));
	check!(e.kind() == ErrorKind::PermissionDenied);

	#[derive(Debug, Eq, PartialEq)]
	struct Pet {
		name: String,
		age: u32,
		kind: String,
		shaved: bool,
	}

	let scrappy = Pet {
		name: "Scrappy".into(),
		age: 7,
		kind: "Bearded Collie".into(),
		shaved: false,
	};

	let coco = Pet {
		name: "Coco".into(),
		age: 7,
		kind: "Bearded Collie".into(),
		shaved: true,
	};
	check!(scrappy == coco);

	check!((3, Some(4)) == [1, 2, 3].iter().size_hint());

	assert!(let Err(e) = File::open("/non/existing/file")
		&& e.kind() == ErrorKind::PermissionDenied);
}