mirror of
https://github.com/nushell/nushell
synced 2025-01-02 16:29:00 +00:00
17 lines
395 B
Rust
17 lines
395 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn for_auto_print_in_each_iteration() {
|
||
|
let actual = nu!(
|
||
|
cwd: ".",
|
||
|
r#"
|
||
|
for i in 1..2 {
|
||
|
echo 1
|
||
|
}"#
|
||
|
);
|
||
|
// Note: nu! macro auto repalce "\n" and "\r\n" with ""
|
||
|
// so our output will be `11`
|
||
|
// that's ok, our main concern is it auto print value in each iteration.
|
||
|
assert_eq!(actual.out, "11");
|
||
|
}
|