2021-01-20 19:58:37 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
2021-06-07 10:08:35 +02:00
|
|
|
fn test_parse_subexpression_with_range() {
|
2021-01-20 19:58:37 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"
|
|
|
|
let foo = 3
|
2021-05-12 03:01:48 +02:00
|
|
|
echo (echo 1..$foo | each { $it }) | to json
|
2021-01-20 19:58:37 +01:00
|
|
|
"#
|
|
|
|
);
|
|
|
|
assert_eq!(actual.out, "[1,2,3]")
|
|
|
|
}
|
2021-02-02 07:23:12 +01:00
|
|
|
|
|
|
|
#[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");
|
|
|
|
}
|