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

env: refactor and move away from pre-1.0 Rust conventions

This commit is contained in:
Alex Lyon 2019-05-13 04:01:39 -07:00
parent 2bb46fe11d
commit 18b19715f9
4 changed files with 190 additions and 204 deletions

View file

@ -2,7 +2,7 @@ use common::util::*;
#[test]
fn test_env_help() {
assert!(new_ucmd!().arg("--help").succeeds().no_stderr().stdout.contains("Options:"));
assert!(new_ucmd!().arg("--help").succeeds().no_stderr().stdout.contains("OPTIONS:"));
}
#[test]