Expand description

Assert a command (built with program and args) stdout string is a match to a regex.

§Example

use regex::Regex;

let program = "bin/printf-stdout";
let args = ["%s", "hello"];
let matcher = Regex::new(r"el").unwrap();
assert_program_args_stdout_is_match!(&program, &args, &matcher);

§Module macros