Expand description
Assert a command (built with program and args) stdout string is less than or equal to another.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stdout) ≤ (program2 + args2 ⇒ command ⇒ stdout)
§Example
use assertables::*;
let a_program = "bin/printf-stdout";
let a_args = ["%s", "alfa"];
let b_program = "bin/printf-stdout";
let b_args = ["%s%s", "z", "z"];
assert_program_args_stdout_le!(&a_program, &a_args, &b_program, &b_args);