Expand description

Assert a command (built with program and args) stderr string is greater than or equal to an expression.

§Examples

let program = "bin/printf-stderr";
let args = ["%s", "hello"];
let s = String::from("hallo");
assert_program_args_stderr_ge_expr!(&program, &args, s);

§Module macros