mirror of
https://github.com/nushell/nushell
synced 2024-12-28 22:13:10 +00:00
12 lines
245 B
Rust
12 lines
245 B
Rust
|
use test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn can_get_reverse_first() {
|
||
|
let actual = nu!(
|
||
|
cwd: "tests/fixtures/formats",
|
||
|
"ls | sort-by name | reverse | first 1 | get name | trim | echo $it"
|
||
|
);
|
||
|
|
||
|
assert_eq!(actual, "utf16.ini");
|
||
|
}
|