Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test return in reduce closure from #7961 #7973

Merged
merged 1 commit into from Feb 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions crates/nu-command/tests/commands/reduce.rs
Expand Up @@ -46,6 +46,25 @@ fn reduce_rows_example() {
assert_eq!(actual.out, "14.8");
}

#[test]
fn reduce_with_return_in_closure() {
let actual = nu!(
cwd: ".", pipeline(
r#"
[1, 2] | reduce --fold null { |it, state|
if $it == 1 {
return 10
};
return ($it * $state)
}
"#
)
);

assert_eq!(actual.out, "20");
assert!(actual.err.is_empty());
}

#[test]
fn reduce_enumerate_example() {
let actual = nu!(
Expand Down