nushell/crates/nu-engine/tests/evaluate/subexpression.rs
JT 16faafb7a8
Rename the use of invocation to subexpression (#3568)
* Rename the use of invocation to subexpression

* Fix test name
2021-06-07 20:08:35 +12:00

37 lines
688 B
Rust

use nu_test_support::nu;
#[test]
fn test_parse_subexpression_with_range() {
let actual = nu!(
cwd: ".",
r#"
let foo = 3
echo (echo 1..$foo | each { $it }) | to json
"#
);
assert_eq!(actual.out, "[1,2,3]")
}
#[test]
fn create_nothing_in_table() {
let actual = nu!(
cwd: ".",
r#"
echo [[column]; [$nothing]] | to json
"#
);
assert_eq!(actual.out, "{\"column\":null}");
}
#[test]
fn compare_to_nothing() {
let actual = nu!(
cwd: ".",
r#"
let f = $nothing
if $f == $nothing {echo $true} {echo $false}
"#
);
assert_eq!(actual.out, "true");
}