mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
tests/env: add empty name test
This commit is contained in:
parent
c58bd9f569
commit
f9512e5a90
1 changed files with 9 additions and 0 deletions
|
@ -108,6 +108,15 @@ fn test_ignore_environment() {
|
|||
scene.ucmd().arg("-").run().no_stdout();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_empty_name() {
|
||||
new_ucmd!()
|
||||
.arg("-i")
|
||||
.arg("=xyz")
|
||||
.run()
|
||||
.stderr_only("env: warning: no name specified for value 'xyz'");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_null_delimiter() {
|
||||
let out = new_ucmd!()
|
||||
|
|
Loading…
Reference in a new issue