test: add test for overflow in `LineRange::from`

This commit is contained in:
skoriop 2023-10-05 03:14:42 +05:30 committed by David Peter
parent 9fcc57e496
commit d89df18de2
1 changed files with 7 additions and 0 deletions

View File

@ -128,6 +128,13 @@ fn test_parse_plus() {
assert_eq!(50, range.upper);
}
#[test]
fn test_parse_plus_overflow() {
let range = LineRange::from("18446744073709551615:+1").expect("Shouldn't fail on test!");
assert_eq!(18446744073709551615, range.lower);
assert_eq!(18446744073709551615, range.upper);
}
#[test]
fn test_parse_plus_fail() {
let range = LineRange::from("40:+z");