Expand description

Assert a command stdout string contains a given containee.

§Example

use std::process::Command;

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

§Module macros