mirror of
https://github.com/nushell/nushell.git
synced 2025-01-11 16:58:41 +01:00
18 lines
334 B
Rust
18 lines
334 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn adds_a_row_to_the_end() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open fileA.txt
|
|
| lines
|
|
| append "testme"
|
|
| nth 3
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "testme");
|
|
}
|