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

Merge branch 'master' into fold-backspace-and-carriage-return

This commit is contained in:
Sylvestre Ledru 2021-04-06 22:53:10 +02:00 committed by GitHub
commit b2b45d8af2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 126 additions and 87 deletions

View file

@ -534,3 +534,12 @@ fn test_bytewise_carriage_return_is_not_word_boundary() {
.succeeds()
.stdout_is("fizz\rb\nuzz\rfi\nzzbuzz");
}
#[test]
fn test_obsolete_syntax() {
new_ucmd!()
.arg("-5")
.arg("-s")
.arg("space_separated_words.txt")
.succeeds()
.stdout_is("test1\n \ntest2\n \ntest3\n \ntest4\n \ntest5\n \ntest6\n ");
}