You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/tests/cli/utils.rs

8 lines
265 B
Rust

use predicates::prelude::*;
lazy_static::lazy_static! {
/// Predicate that checks for a single line that is a failure
pub static ref FAILURE_LINE: predicates::str::RegexPredicate =
predicate::str::is_match(r"^Failed \(.*\): '.*'\.\n$").unwrap();
}