Module assert_count_gt_x

Module assert_count_gt_x 

Source
Expand description

Assert a count is greater than an expression.

Pseudocode:
a.count() > b

§Example

use assertables::*;

let a = "xx".chars();
let b = 1;
assert_count_gt_x!(a, b);

§Module macros