Merge pull request #4091 from dmatos2012/allow-default-value-mktemp

mktemp: allow default missing value
This commit is contained in:
Sylvestre Ledru 2022-11-03 20:46:11 +01:00 committed by GitHub
commit 2d79c4f693
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -825,3 +825,9 @@ fn test_nonexistent_dir_prefix() {
);
}
}
#[test]
fn test_default_missing_value() {
let scene = TestScenario::new(util_name!());
scene.ucmd().arg("-d").arg("--tmpdir").succeeds();
}