Module lib::assert_count::assert_count_gt

source ·
Expand description

Assert a count is greater than another count.

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

§Example

use assertables::*;

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

§Module macros