1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

Merge pull request #1492 from sylvestre/test_printenv

test(printenv): add some tests
This commit is contained in:
Roy Ivy III 2020-05-03 15:15:43 -05:00 committed by GitHub
commit 30c14f1025
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

30
tests/test_printenv.rs Normal file
View file

@ -0,0 +1,30 @@
use common::util::*;
use std::env;
#[test]
fn test_get_all() {
let key = "KEY";
env::set_var(key, "VALUE");
assert_eq!(env::var(key), Ok("VALUE".to_string()));
let result = TestScenario::new(util_name!()).ucmd_keepenv().run();
assert!(result.success);
assert!(result.stdout.contains("HOME="));
assert!(result.stdout.contains("KEY=VALUE"));
}
#[test]
fn test_get_var() {
let key = "KEY";
env::set_var(key, "VALUE");
assert_eq!(env::var(key), Ok("VALUE".to_string()));
let result = TestScenario::new(util_name!())
.ucmd_keepenv()
.arg("KEY")
.run();
assert!(result.success);
assert!(!result.stdout.is_empty());
assert!(result.stdout.trim() == "VALUE");
}

View file

@ -77,6 +77,7 @@ generic! {
"nl", test_nl;
"od", test_od;
"paste", test_paste;
"printenv", test_printenv;
"printf", test_printf;
"ptx", test_ptx;
"pwd", test_pwd;