mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
join: add support for -t '\0'
This commit is contained in:
parent
4fc47aba61
commit
109277d405
3 changed files with 12 additions and 0 deletions
|
@ -346,3 +346,14 @@ fn non_unicode() {
|
|||
.succeeds()
|
||||
.stdout_only_fixture("non-unicode.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn null_field_separators() {
|
||||
new_ucmd!()
|
||||
.arg("-t")
|
||||
.arg("\\0")
|
||||
.arg("non-unicode_1.bin")
|
||||
.arg("non-unicode_2.bin")
|
||||
.succeeds()
|
||||
.stdout_only_fixture("null-sep.expected");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue