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 46 47 48 49
//! Assert a command stderr string contains a given containee.
//!
//! Deprecated. Please rename from `assert_command_stderr_contains`
/// into `assert_command_stderr_string_contains`.
/// Assert a command stderr string contains a given containee.
///
/// Deprecated. Please rename from `assert_command_stderr_contains_as_result`
/// into `assert_command_stderr_string_contains_as_result`.
///
#[deprecated(
note = "Please rename from `assert_command_stderr_contains_as_result` into `assert_command_stderr_string_contains_as_result`."
)]
#[macro_export]
macro_rules! assert_command_stderr_contains_as_result {
($($arg:tt)*) => {
$crate::assert_command_stderr_string_contains_as_result!($($arg)*)
}
}
/// Assert a command stderr string contains a given containee.
///
/// Deprecated. Please rename from `assert_command_stderr_contains` into
/// `assert_command_stderr_string_contains`.
///
#[deprecated(
note = "Please rename from `assert_command_stderr_contains` into `assert_command_stderr_string_contains`."
)]
#[macro_export]
macro_rules! assert_command_stderr_contains {
($($arg:tt)*) => {
$crate::assert_command_stderr_string_contains!($($arg)*)
}
}
/// Assert a command stderr string contains a given containee.
///
/// Deprecated. Please rename from `debug_assert_command_stderr_contains` into
/// `debug_assert_command_stderr_string_contains`.
///
#[deprecated(
note = "Please rename from `debug_assert_command_stderr_contains` into `debug_assert_command_stderr_string_contains`."
)]
#[macro_export]
macro_rules! debug_assert_command_stderr_contains {
($($arg:tt)*) => {
$crate::debug_assert_command_stderr_string_contains!($($arg)*)
}
}