mirror of
https://github.com/nushell/nushell
synced 2025-01-02 16:29:00 +00:00
16 lines
346 B
Rust
16 lines
346 B
Rust
|
use nu_test_support::{nu, pipeline};
|
||
|
|
||
|
#[test]
|
||
|
fn adds_a_row_to_the_end() {
|
||
|
let actual = nu!(
|
||
|
cwd: ".", pipeline(
|
||
|
r#"
|
||
|
echo [ "Andrés N. Robalino", "Jonathan Turner", "Yehuda Katz" ]
|
||
|
| append "pollo loco"
|
||
|
| nth 3
|
||
|
"#
|
||
|
));
|
||
|
|
||
|
assert_eq!(actual.out, "pollo loco");
|
||
|
}
|