Expand description

Assert a command stderr string contains a given containee.

Pseudocode:
(command ⇒ stderr ⇒ string) contains (expr into string)

§Example

use std::process::Command;

let mut command = Command::new("bin/printf-stderr");
command.args(["%s", "hello"]);
let containee = "ell";
assert_command_stderr_contains!(command, &containee);

§Module macros