mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
55 lines
1.1 KiB
Rust
55 lines
1.1 KiB
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn for_doesnt_auto_print_in_each_iteration() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
for i in 1..2 {
|
|
echo 1
|
|
}"#
|
|
);
|
|
// Make sure we don't see any of these values in the output
|
|
// As we do not auto-print loops anymore
|
|
assert!(!actual.out.contains('1'));
|
|
}
|
|
|
|
#[test]
|
|
fn for_break_on_external_failed() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
for i in 1..2 {
|
|
print 1;
|
|
nu --testbin fail
|
|
}"#
|
|
);
|
|
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
|
// so our output will be `1`
|
|
assert_eq!(actual.out, "1");
|
|
}
|
|
|
|
#[test]
|
|
fn failed_for_should_break_running() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
for i in 1..2 {
|
|
nu --testbin fail
|
|
}
|
|
print 3"#
|
|
);
|
|
assert!(!actual.out.contains('3'));
|
|
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
let x = [1 2]
|
|
for i in $x {
|
|
nu --testbin fail
|
|
}
|
|
print 3"#
|
|
);
|
|
assert!(!actual.out.contains('3'));
|
|
}
|