2022-12-11 17:46:03 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
2023-03-26 01:23:54 +01:00
|
|
|
fn for_doesnt_auto_print_in_each_iteration() {
|
2022-12-11 17:46:03 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"
|
|
|
|
for i in 1..2 {
|
|
|
|
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 for_break_on_external_failed() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
r#"
|
|
|
|
for i in 1..2 {
|
2023-03-16 23:53:46 +01:00
|
|
|
print 1;
|
2022-12-14 16:20:18 +01:00
|
|
|
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");
|
|
|
|
}
|