Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Created June 16, 2016 15:17
Show Gist options
  • Select an option

  • Save carols10cents/1cc72d3fe289780c7444d476b2d09681 to your computer and use it in GitHub Desktop.

Select an option

Save carols10cents/1cc72d3fe289780c7444d476b2d09681 to your computer and use it in GitHub Desktop.
How to use assert_ne
#[macro_use]
extern crate assert_ne;
#[cfg(test)]
mod tests {
#[test]
fn you_can_assert_ne() {
let before = 5;
let after = before + 12;
assert_ne!(before, after);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment