Module assert_count_gt

Module assert_count_gt 

Source
Expand description

Assert a count is greater than another.

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

§Example

use assertables::*;

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

§Module macros