Assert an expression (such as a regex) is not a match for an expression (such as a string).
use std::process::Command; use regex::Regex; let a = Regex::new(r"foo").unwrap(); let b = "yoohoo"; assert_not_match!(a, b);
assert_not_match
assert_not_match_as_result
debug_assert_not_match