mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 03:44:19 +01:00
18 lines
338 B
Rust
18 lines
338 B
Rust
use test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn adds_a_row_to_the_beginning() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open fileA.txt
|
|
| lines
|
|
| prepend "testme"
|
|
| nth 0
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "testme");
|
|
}
|