mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
8 lines
207 B
Rust
8 lines
207 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn ignore_still_causes_stream_to_be_consumed_fully() {
|
||
|
let result = nu!("[foo bar] | each { |val| print $val; $val } | ignore");
|
||
|
assert_eq!("foobar", result.out);
|
||
|
}
|