Move and enable with-env test (#4489)

This commit is contained in:
JT
2022-02-16 04:59:44 -05:00
committed by GitHub
parent bd96ce4e9c
commit 644435bfe3
2 changed files with 8 additions and 12 deletions

View File

@@ -243,3 +243,11 @@ fn reduce_spans() -> TestResult {
"right here",
)
}
#[test]
fn with_env_shorthand_nested_quotes() -> TestResult {
run_test(
r#"FOO='-arg "hello world"' echo $env | get FOO"#,
"-arg \"hello world\"",
)
}