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 mut b = Command::new("bin/exit-with-arg"); b.arg("1");
assert_process_status_code_value_eq!(a, b);

§Module macros