mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
32fbcf39cc
* make `first` behave same way as `last` * better behaviour * fix tests * add tests
12 lines
244 B
Rust
12 lines
244 B
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn can_get_reverse_first() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats",
|
|
"ls | sort-by name | reverse | first | get name | str trim "
|
|
);
|
|
|
|
assert_eq!(actual.out, "utf16.ini");
|
|
}
|