Expand description
Assert a command (built with program and args) stdout string is greater than another.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stdout ⇒ string) > (program2 + args2 ⇒ command ⇒ stdout ⇒ string)
§Example
use assertables::*;
let a_program = "bin/printf-stdout";
let a_args = ["%s", "hello"];
let b_program = "bin/printf-stdout";
let b_args = ["%s%s%s%s%s", "h", "a", "l", "l", "o"];
assert_program_args_stdout_gt!(&a_program, &a_args, &b_program, &b_args);