Expand description

Assert a process status code value is greater than an expression.

Pseudocode:
a.len() > b

§Example

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

let mut a = Command::new("bin/exit-with-arg"); a.arg("2");
let b = 1;
assert_process_status_code_value_gt_x!(a, b);

§Module macros