mirror of
https://github.com/nushell/nushell.git
synced 2025-02-17 02:50:56 +01:00
14 lines
264 B
Rust
14 lines
264 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn echo_range_is_lazy() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
echo 1..10000000000 | first 3 | to json
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "[1,2,3]");
|
|
}
|