tests/env: add empty name test

This commit is contained in:
Thomas Queiroz
2021-11-02 16:45:39 -03:00
parent c58bd9f569
commit f9512e5a90
+9
View File
@@ -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!()