assertables/assert_program_args/
assert_program_args_stdout_is_match.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! Assert a command (built with program and args) stdout string is a match to a regex.
//!
//! Deprecated. Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`.

/// Assert a command (built with program and args) stdout string is a match to a regex.
///
/// Deprecated. Please rename from `assert_program_args_stdout_is_match_as_result` to `assert_program_args_stdout_string_is_match_as_result`.
///
#[deprecated(
    note = "Please rename from `assert_program_args_stdout_is_match_as_result` to `assert_program_args_stdout_string_is_match_as_result`."
)]
#[macro_export]
macro_rules! assert_program_args_stdout_is_match_as_result {
    ($($arg:tt)*) => {
        $crate::assert_program_args_stdout_string_is_match_as_result!($($arg)*)
    }
}

/// Assert a command (built with program and args) stdout string is a match to a regex.
///
/// Deprecated. Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`.
///
#[deprecated(
    note = "Please rename from `assert_program_args_stdout_is_match` to `assert_program_args_stdout_string_is_match`."
)]
#[macro_export]
macro_rules! assert_program_args_stdout_is_match {
    ($($arg:tt)*) => {
        $crate::assert_program_args_stdout_string_is_match!($($arg)*)
    }
}

/// Assert a command (built with program and args) stdout string is a match to a regex.
///
/// Deprecated. Please rename from `debug_assert_program_args_stdout_is_match` to `debug_assert_program_args_stdout_string_is_match`.
///
#[deprecated(
    note = "Please rename from `debug_assert_program_args_stdout_is_match` to `debug_assert_program_args_stdout_string_is_match`."
)]
#[macro_export]
macro_rules! debug_assert_program_args_stdout_is_match {
    ($($arg:tt)*) => {
        $crate::debug_assert_program_args_stdout_string_is_match!($($arg)*)
    }
}