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

expand: all perl tests passing

This commit is contained in:
Sebastian Bentmar Holgersson 2023-01-03 20:49:20 +00:00 committed by Sylvestre Ledru
parent cbab8677e6
commit ddc6fabca0
2 changed files with 22 additions and 3 deletions

View file

@ -353,7 +353,17 @@ fn test_ignore_initial_plus_slash_combination() {
fn test_comma_with_plus_and_multi_character_values() {
new_ucmd!()
.args(&["--tabs=3,+6"])
.pipe_in("\taaa\tbbbb\tcccc")
.pipe_in("\taaa\tbbb\tccc")
.succeeds()
// 01234567890
.stdout_is(" aaa bbb ccc");
}
#[test]
fn test_comma_with_plus_and_multi_character_values() {
new_ucmd!()
.args(&["--tabs=3,+6"])
.pipe_in("\taaa\tbbb\tccc")
.succeeds()
// 01234567890
.stdout_is(" aaa bbb ccc");