2020-05-06 03:56:31 +00:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_extends_environment() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"with-env [FOO BARRRR] {echo $nu.env} | get FOO"
|
|
|
|
);
|
|
|
|
|
2020-05-07 11:03:43 +00:00
|
|
|
assert_eq!(actual.out, "BARRRR");
|
2020-05-06 03:56:31 +00:00
|
|
|
}
|
2020-05-06 06:57:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_shorthand() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO=BARRRR echo $nu.env | get FOO"
|
|
|
|
);
|
|
|
|
|
2020-05-07 11:03:43 +00:00
|
|
|
assert_eq!(actual.out, "BARRRR");
|
2020-05-06 06:57:37 +00:00
|
|
|
}
|
2020-05-24 23:26:27 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn shorthand_doesnt_reorder_arguments() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO=BARRRR nu --testbin cococo first second"
|
|
|
|
);
|
|
|
|
|
2020-07-22 21:41:34 +00:00
|
|
|
assert_eq!(actual.out, "first second");
|
2020-05-24 23:26:27 +00:00
|
|
|
}
|
2020-05-26 19:03:55 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_shorthand_trims_quotes() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO='BARRRR' echo $nu.env | get FOO"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "BARRRR");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_and_shorthand_same_result() {
|
|
|
|
let actual_shorthand = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO='BARRRR' echo $nu.env | get FOO"
|
|
|
|
);
|
|
|
|
|
|
|
|
let actual_normal = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"with-env [FOO BARRRR] {echo $nu.env} | get FOO"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual_shorthand.out, actual_normal.out);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_shorthand_nested_quotes() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO='-arg \"hello world\"' echo $nu.env | get FOO"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "-arg \"hello world\"");
|
|
|
|
}
|