forked from extern/nushell
a008f1aa80
* WIP command tests * Finish marking todo tests * update * update * Windows cd test ignoring
12 lines
246 B
Rust
12 lines
246 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 1 | get name | str trim "
|
|
);
|
|
|
|
assert_eq!(actual.out, "utf16.ini");
|
|
}
|