assert_matches_regex
Provides a macro, assert_matches_regex, which tests whether a string
matches a given regex, causing a panic if it does not match.
[]
= "0.1"
Example
use assert_matches_regex;
assert_matches_regex!;
let data = "deadc0de";
assert_matches_regex!;