Expand description

Assert a process status code value is not 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_process_status_code_value_ne!(a, b);

§Module macros