comparable_test 0.5.4

A library for comparing data structures in Rust, oriented toward testing
use comparable::{assert_changes, Changed::*};

#[test]
fn test_empty() {
	assert_changes!(&std::iter::empty::<()>(), &std::iter::empty::<()>(), Unchanged,);
}