mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 17:28:03 +00:00
uniq: add test for case-insensitive comparison
This commit is contained in:
parent
0ea5314ea1
commit
f19d361013
2 changed files with 12 additions and 3 deletions
|
@ -9,8 +9,10 @@ path = "uniq.rs"
|
|||
|
||||
[dependencies]
|
||||
getopts = "*"
|
||||
libc = "*"
|
||||
uucore = { path="../uucore" }
|
||||
|
||||
[dependencies.uucore]
|
||||
path="../uucore"
|
||||
default-features = false
|
||||
|
||||
[[bin]]
|
||||
name = "uniq"
|
||||
|
|
|
@ -94,6 +94,13 @@ fn test_stdin_repeated_only() {
|
|||
.run().stdout_is_fixture("sorted-repeated-only.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_stdin_ignore_case() {
|
||||
new_ucmd()
|
||||
.args(&["-i"]).pipe_in_fixture(INPUT)
|
||||
.run().stdout_is_fixture("sorted-ignore-case.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_stdin_zero_terminated() {
|
||||
new_ucmd()
|
||||
|
|
Loading…
Reference in a new issue