2022-11-11 19:21:45 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn while_sum() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"mut total = 0; mut x = 0; while $x <= 10 { $total = $total + $x; $x = $x + 1 }; $total"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "55");
|
|
|
|
}
|
2022-12-11 17:46:03 +01:00
|
|
|
|
|
|
|
#[test]
|
2023-03-26 01:23:54 +01:00
|
|
|
fn while_doesnt_auto_print_in_each_iteration() {
|
2022-12-11 17:46:03 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"mut total = 0; while $total < 2 { $total = $total + 1; echo 1 }"
|
|
|
|
);
|
2023-03-26 01:23:54 +01:00
|
|
|
// 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'));
|
2022-12-11 17:46:03 +01:00
|
|
|
}
|
2022-12-14 16:20:18 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn while_break_on_external_failed() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
2023-03-16 23:53:46 +01:00
|
|
|
"mut total = 0; while $total < 2 { $total = $total + 1; print 1; nu --testbin fail }"
|
2022-12-14 16:20:18 +01:00
|
|
|
);
|
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");
|
|
|
|
}
|