Skip to content

Instantly share code, notes, and snippets.

@kmcallister
Created March 23, 2014 22:09
Show Gist options
  • Select an option

  • Save kmcallister/9730619 to your computer and use it in GitHub Desktop.

Select an option

Save kmcallister/9730619 to your computer and use it in GitHub Desktop.
test_eq! macro
macro_rules! test_eq( ($name:ident, $left:expr, $right:expr) => (
#[test]
fn $name() {
assert_eq!($left, $right);
}
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment