Expand description
Assert a status code value is less than or equal to another.
Pseudocode:
a ⇒ status ⇒ code ⇒ value ≤ b ⇒ status ⇒ code ⇒ value
§Example
use assertables::*;
use std::process::Command;
let mut a = Command::new("bin/exit-with-arg"); a.arg("1");
let mut b = Command::new("bin/exit-with-arg"); b.arg("2");
assert_status_code_value_le!(a, b);