assertables/assert_command/
assert_command_stderr_contains.rs

1//! Assert a command stderr string contains a given containee.
2//!
3//! Deprecated. Please rename from `assert_command_stderr_contains`
4/// into `assert_command_stderr_string_contains`.
5
6/// Assert a command stderr string contains a given containee.
7///
8/// Deprecated. Please rename from `assert_command_stderr_contains_as_result`
9/// into `assert_command_stderr_string_contains_as_result`.
10///
11#[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/// Assert a command stderr string contains a given containee.
22///
23/// Deprecated. Please rename from `assert_command_stderr_contains` into
24/// `assert_command_stderr_string_contains`.
25///
26#[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/// Assert a command stderr string contains a given containee.
37///
38/// Deprecated. Please rename from `debug_assert_command_stderr_contains` into
39/// `debug_assert_command_stderr_string_contains`.
40///
41#[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}