mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
cut: fix -d=
(#2424)
This commit is contained in:
parent
439b7e0ca5
commit
65f47be5ee
2 changed files with 19 additions and 1 deletions
|
@ -157,3 +157,12 @@ fn test_directory_and_no_such_file() {
|
|||
.run()
|
||||
.stderr_is("cut: some: No such file or directory\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_equal_as_delimiter() {
|
||||
new_ucmd!()
|
||||
.args(&["-f", "2", "-d="])
|
||||
.pipe_in("--libdir=./out/lib")
|
||||
.succeeds()
|
||||
.stdout_only("./out/lib\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue