Expand description

Assert a command (built with program and args) stdout string is not 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_ne!(&a_program, &a_args, &b_program, &b_args);

§Module macros