Module assert_count_ne

Source
Expand description

Assert a count is not equal to another.

Pseudocode:
a.count() ≠ b.count()

§Example

use assertables::*;

let a = "x".chars();
let b = "xx".chars();
assert_count_ne!(a, b);

§Module macros