Expand description
Assert a process status code value is 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 b = 2;
assert_process_status_code_value_ne_x!(a, b);