mirror of
https://github.com/nushell/nushell
synced 2024-11-16 17:57:57 +00:00
17 lines
338 B
Rust
17 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");
|
|
}
|