Do not create help for wrapped command (#11235)

Pretty self-explanatory.  The commit is only one `if`.

Fix #11096
This commit is contained in:
Andrej Kolchin
2023-12-05 19:04:36 +00:00
committed by GitHub
parent fb3350ebc3
commit 05d7d6d6ad
2 changed files with 9 additions and 1 deletions

View File

@ -299,3 +299,9 @@ fn def_env_wrapped() {
);
assert_eq!(actual.out, "bacon");
}
#[test]
fn def_env_wrapped_no_help() {
let actual = nu!("def --wrapped foo [...rest] { echo $rest }; foo -h | to json --raw");
assert_eq!(actual.out, r#"["-h"]"#);
}