assertables

Module assert_matches

Source
Expand description

Assert matches for verifying an item matches a condition.

Compare a length with another length:

§Example

use assertables::*;

let a = 'a';
assert_matches!(a, 'a'..='z');

Modules§