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

seq: Updates hex parse readability, adds hex test

This commit is contained in:
vulppine 2021-10-05 18:41:28 -07:00
parent 4e1f945e86
commit cddd40b4e1
2 changed files with 19 additions and 20 deletions

View file

@ -54,6 +54,16 @@ fn test_hex_big_number() {
);
}
#[test]
fn test_hex_identifier_in_wrong_place() {
new_ucmd!()
.args(&["1234ABCD0x"])
.fails()
.no_stdout()
.stderr_contains("invalid hexadecimal argument: '1234ABCD0x'")
.stderr_contains("for more information.");
}
#[test]
fn test_rejects_nan() {
let ts = TestScenario::new(util_name!());