assertables/assert_command/assert_command_stderr_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 46
//! Assert a command stderr string is a match to a regex.
//!
//! Deprecated. Please rename from `assert_command_stderr_is_match` into `assert_command_stderr_string_is_match`.
/// Assert a command stderr string is a match to a regex.
///
/// Deprecated. Please rename from `assert_command_stderr_is_match_as_result`
/// into `assert_command_stderr_string_is_match_as_result`.
///
#[deprecated(
note = "Please rename from `assert_command_stderr_is_match_as_result` into `assert_command_stderr_string_is_match_as_result`."
)]
#[macro_export]
macro_rules! assert_command_stderr_is_match_as_result {
($($arg:tt)*) => {
$crate::assert_command_stderr_string_is_match_as_result!($($arg)*)
}
}
/// Assert a command stderr string is a match to a regex.
///
/// Deprecated. Please rename from `assert_command_stderr_is_match` into `assert_command_stderr_string_is_match`.
///
#[deprecated(
note = "Please rename from `assert_command_stderr_is_match` into `assert_command_stderr_string_is_match`."
)]
#[macro_export]
macro_rules! assert_command_stderr_is_match {
($($arg:tt)*) => {
$crate::assert_command_stderr_string_is_match!($($arg)*)
}
}
/// Assert a command stderr string is a match to a regex.
///
/// Deprecated. Please rename from `debug_assert_command_stderr_is_match` into `debug_assert_command_stderr_string_is_match`.
///
#[deprecated(
note = "Please rename from `debug_assert_command_stderr_is_match` into `debug_assert_command_stderr_string_is_match`."
)]
#[macro_export]
macro_rules! debug_assert_command_stderr_is_match {
($($arg:tt)*) => {
$crate::debug_assert_command_stderr_string_is_match!($($arg)*)
}
}