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

Reimplemented simply using args

Signed-off-by: Hanif Bin Ariffin <hanif.ariffin.4326@gmail.com>
This commit is contained in:
Hanif Bin Ariffin 2021-07-09 23:51:37 +08:00
parent db79b5abb2
commit c4c6819dae
2 changed files with 14 additions and 10 deletions

View file

@ -275,3 +275,11 @@ fn test_interpret_backslash_at_eol_literally() {
.succeeds()
.stdout_is("\\");
}
#[test]
fn test_more_than_2_sets() {
new_ucmd!()
.args(&["'abcdefgh'", "'a", "'b'"])
.pipe_in("hello world")
.fails();
}