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