Expand description
Assert a command (built with program and args) stdout string is a match to a regex.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stdout ⇒ string) is match (expr into string)
§Example
use assertables::*;
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);