mirror of
https://github.com/nushell/nushell.git
synced 2024-12-11 17:51:50 +01:00
9fd680ae2b
Signed-off-by: closetool <c299999999@qq.com>
55 lines
1.0 KiB
Rust
55 lines
1.0 KiB
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");
|
|
}
|
|
|
|
#[test]
|
|
fn compare_nothing_and_boolean() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
if $true == $nothing {echo $true} {echo $false}
|
|
"#
|
|
);
|
|
assert_eq!(actual.out, "false");
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
if $false == $nothing {echo $true} {echo $false}
|
|
"#
|
|
);
|
|
assert_eq!(actual.out, "false");
|
|
}
|