forked from extern/nushell
96e5fc05a3
Pick->Select rename. Integration tests changes.
22 lines
424 B
Rust
22 lines
424 B
Rust
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"
|
|
);
|
|
|
|
assert_eq!(actual.out, "BARRRR");
|
|
}
|
|
|
|
#[test]
|
|
fn with_env_shorthand() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats",
|
|
"FOO=BARRRR echo $nu.env | get FOO"
|
|
);
|
|
|
|
assert_eq!(actual.out, "BARRRR");
|
|
}
|