nushell/tests/commands/prepend.rs
Jonathan Turner 4322d373e6 More renames
2019-12-18 07:54:39 +13:00

18 lines
341 B
Rust

use nu_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");
}