Assert a status is a failure.
Pseudocode: a ⇒ status ⇒ success = false
use assertables::*; use std::process::Command; let mut a = Command::new("bin/exit-with-arg"); a.arg("1"); assert_status_failure!(a);
assert_status_failure
assert_status_failure_as_result
debug_assert_status_failure