Expand description

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

§Example


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

§Module macros