mirror of
https://github.com/nushell/nushell.git
synced 2024-12-26 17:09:06 +01:00
12 lines
232 B
Rust
12 lines
232 B
Rust
|
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");
|
||
|
}
|