Module assert_command_stderr_gt

Source
Expand description

Assert a command stderr string is greater than another.

Pseudocode:
(a_command ⇒ stderr) = (b_command ⇒ stderr)

§Example

use assertables::*;
use std::process::Command;

let mut a = Command::new("bin/printf-stderr");
a.args(["%s", "alfa"]);
let mut b = Command::new("bin/printf-stderr");
b.args(["%s", "aa"]);
assert_command_stderr_gt!(a, b);

§Module macros