Expand description
Assert a command stderr string is a match to a regex.
§Example
use std::process::Command;
use regex::Regex;
let mut command = Command::new("bin/printf-stderr");
command.args(["%s", "hello"]);
let matcher = Regex::new(r"ell").unwrap();
assert_command_stderr_is_match!(command, matcher);