mirror of
https://github.com/sharkdp/bat.git
synced 2024-12-27 16:58:50 +01:00
test: add test for overflow in LineRange::from
This commit is contained in:
parent
9fcc57e496
commit
d89df18de2
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user