assert_ne

Crates.ioassert_ne
lib.rsassert_ne
version0.3.0
sourcesrc
created_at2016-06-16 17:52:04.320568
updated_at2016-06-21 15:48:15.455051
descriptionassert not equals
homepage
repositoryhttps://github.com/ashleygwilliams/assert_ne.git
max_upload_size
id5394
size2,322
ashley williams (ashleygwilliams)

documentation

README

assert_ne

assert not equals

this is a rust crate that affords you a macro, assert_ne!.

usage

assert_ne!(3, 3);
// panicked at 'assertion failed: 
// `(left !== right)` (left: `3`, right: `3`)

assert_ne!(3, 4);
// :)

prerequisites

this a rust crate. to use and work on this project, you'll need to have rust installed. to install rust, i recommend using rustup.

up and running

  1. fork and clone this repository
  2. cd assert_ne
  3. cargo build

testing

cargo test

Commit count: 11

cargo fmt