Module assert_status_code_value_gt_x

Source
Expand description

Assert a 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_status_code_value_gt_x!(a, b);

§Module macros