assertables/assert_command/
assert_command_stderr_contains.rs1#[deprecated(
12 note = "Please rename from `assert_command_stderr_contains_as_result` into `assert_command_stderr_string_contains_as_result`."
13)]
14#[macro_export]
15macro_rules! assert_command_stderr_contains_as_result {
16 ($($arg:tt)*) => {
17 $crate::assert_command_stderr_string_contains_as_result!($($arg)*)
18 }
19}
20
21#[deprecated(
27 note = "Please rename from `assert_command_stderr_contains` into `assert_command_stderr_string_contains`."
28)]
29#[macro_export]
30macro_rules! assert_command_stderr_contains {
31 ($($arg:tt)*) => {
32 $crate::assert_command_stderr_string_contains!($($arg)*)
33 }
34}
35
36#[deprecated(
42 note = "Please rename from `debug_assert_command_stderr_contains` into `debug_assert_command_stderr_string_contains`."
43)]
44#[macro_export]
45macro_rules! debug_assert_command_stderr_contains {
46 ($($arg:tt)*) => {
47 $crate::debug_assert_command_stderr_string_contains!($($arg)*)
48 }
49}