2020-05-06 05:56:31 +02: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 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "BARRRR");
|
2020-05-06 05:56:31 +02:00
|
|
|
}
|
2020-05-06 08:57:37 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_env_shorthand() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO=BARRRR echo $nu.env | get FOO"
|
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "BARRRR");
|
2020-05-06 08:57:37 +02:00
|
|
|
}
|
2020-05-25 01:26:27 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn shorthand_doesnt_reorder_arguments() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
|
|
|
"FOO=BARRRR nu --testbin cococo first second"
|
|
|
|
);
|
|
|
|
|
2020-07-22 23:41:34 +02:00
|
|
|
assert_eq!(actual.out, "first second");
|
2020-05-25 01:26:27 +02:00
|
|
|
}
|
2020-05-26 21:03:55 +02: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\"");
|
|
|
|
}
|