Module assert_command_stderr_gt_x

Source
Expand description

Assert a command stderr string is greater than an expression.

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

§Example

use assertables::*;
use std::process::Command;

let mut command = Command::new("bin/printf-stderr");
command.args(["%s", "alfa"]);
let bytes = vec![b'a', b'a'];
assert_command_stderr_gt_x!(command, bytes);

§Module macros