Expand description
Assert a command (built with program and args) stderr string is greater than or equal to another.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stderr ⇒ string) ≥ (program2 + args2 ⇒ command ⇒ stderr ⇒ string)
§Example
use assertables::*;
let a_program = "bin/printf-stderr";
let a_args = ["%s", "hello"];
let b_program = "bin/printf-stderr";
let b_args = ["%s", "hallo"];
assert_program_args_stderr_ge!(&a_program, &a_args, &b_program, &b_args);/// # Module macros