macro_rules! assert_command_stdout_string_is_match_as_result {
($command:expr, $matcher:expr $(,)?) => { ... };
}
Expand description
Assert a command stdout string is a match to a regex.
Pseudocode:
(command ⇒ stdout ⇒ string) is match (expr into string)
-
If true, return Result
Ok(command ⇒ stdout ⇒ string)
. -
Otherwise, return Result
Err(message)
.
This macro is useful for runtime checks, such as checking parameters, or sanitizing inputs, or handling different results in different ways.