#[macro_use] extern crate yotsuba; describe!(equal, { it!(does_not_panic_on_success, { expect! { "test"; to equal "test" } }); it_panics!(when_the_two_are_not_equal, { expect! { "test"; to equal "not a test" } }); it!(uses_not_equal_correctly, { expect! { 4; to not_equal 7 } }); });