2022-12-11 17:46:03 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_auto_print_in_each_iteration() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"
|
|
|
|
mut total = 0;
|
|
|
|
loop {
|
|
|
|
if $total == 3 {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$total += 1;
|
|
|
|
}
|
|
|
|
echo 1
|
|
|
|
}"#
|
|
|
|
);
|
2023-01-15 03:03:32 +01:00
|
|
|
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
2022-12-11 17:46:03 +01:00
|
|
|
// so our output will be `111`
|
|
|
|
// that's ok, our main concern is it auto print value in each iteration.
|
|
|
|
assert_eq!(actual.out, "111");
|
|
|
|
}
|
2022-12-14 16:20:18 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_break_on_external_failed() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"
|
|
|
|
mut total = 0;
|
|
|
|
loop {
|
|
|
|
if $total == 3 {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$total += 1;
|
|
|
|
}
|
|
|
|
echo 1;
|
|
|
|
nu --testbin fail;
|
|
|
|
}"#
|
|
|
|
);
|
2023-01-15 03:03:32 +01:00
|
|
|
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
2022-12-14 16:20:18 +01:00
|
|
|
// so our output will be `1`.
|
|
|
|
assert_eq!(actual.out, "1");
|
|
|
|
}
|