assertables/assert_program_args/assert_program_args_stdout_is_match.rs
1//! Assert a command (built with program and args) stdout into a string is a match to a regex.
2//!
3//! Deprecated. Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`.
4
5/// Assert a command (built with program and args) stdout into a string is a match to a regex.
6///
7/// Deprecated. Please rename from `assert_program_args_stdout_is_match_as_result` to `assert_program_args_stdout_string_is_match_as_result`.
8///
9#[deprecated(
10 note = "Please rename from `assert_program_args_stdout_is_match_as_result` to `assert_program_args_stdout_string_is_match_as_result`."
11)]
12#[macro_export]
13macro_rules! assert_program_args_stdout_is_match_as_result {
14 ($($arg:tt)*) => {
15 $crate::assert_program_args_stdout_string_is_match_as_result!($($arg)*)
16 }
17}
18
19/// Assert a command (built with program and args) stdout into a string is a match to a regex.
20///
21/// Deprecated. Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`.
22///
23#[deprecated(
24 note = "Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`."
25)]
26#[macro_export]
27macro_rules! assert_program_args_stdout_is_match {
28 ($($arg:tt)*) => {
29 $crate::assert_program_args_stdout_string_is_match!($($arg)*)
30 }
31}
32
33/// Assert a command (built with program and args) stdout into a string is a match to a regex.
34///
35/// Deprecated. Please rename from `debug_assert_program_args_stdout_is_match` to `debug_assert_program_args_stdout_string_is_match`.
36///
37#[deprecated(
38 note = "Please rename from `debug_assert_program_args_stdout_is_match` to `debug_assert_program_args_stdout_string_is_match`."
39)]
40#[macro_export]
41macro_rules! debug_assert_program_args_stdout_is_match {
42 ($($arg:tt)*) => {
43 $crate::debug_assert_program_args_stdout_string_is_match!($($arg)*)
44 }
45}