1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

expr: Remove redundant tests that should not work anymore

This commit is contained in:
Teemu Pätsi 2025-05-27 04:25:25 +03:00
parent 3065482440
commit 6b49b26af7
No known key found for this signature in database

View file

@ -797,7 +797,6 @@ pub fn is_truthy(s: &NumOrStr) -> bool {
#[cfg(test)]
mod test {
use crate::ExprError;
use crate::ExprError::InvalidBracketContent;
use crate::syntax_tree::is_valid_range_quantifier;
use super::{
@ -1004,42 +1003,6 @@ mod test {
check_posix_regex_errors(r"abc\)"),
Err(ExprError::UnmatchedClosingParenthesis)
);
#[test]
fn check_regex_empty_repeating_pattern() {
assert_eq!(
check_posix_regex_errors("ab\\{\\}"),
Err(InvalidBracketContent)
);
}
#[test]
fn check_regex_intervals_two_numbers() {
assert_eq!(
// out of order
check_posix_regex_errors("ab\\{1,0\\}"),
Err(InvalidBracketContent)
);
assert_eq!(
check_posix_regex_errors("ab\\{1,a\\}"),
Err(InvalidBracketContent)
);
assert_eq!(
check_posix_regex_errors("ab\\{a,3\\}"),
Err(InvalidBracketContent)
);
assert_eq!(
check_posix_regex_errors("ab\\{a,b\\}"),
Err(InvalidBracketContent)
);
assert_eq!(
check_posix_regex_errors("ab\\{a,\\}"),
Err(InvalidBracketContent)
);
assert_eq!(
check_posix_regex_errors("ab\\{,b\\}"),
Err(InvalidBracketContent)
);
}
#[test]