mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 18:33:50 +01:00
18 lines
374 B
Rust
18 lines
374 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn extracts_fields_from_the_given_the_pattern() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open fileA.txt
|
|
| parse "{Name}={Value}"
|
|
| nth 1
|
|
| get Value
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "StupidLongName");
|
|
}
|