mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
53fbf62493
# Description Made a mistake when fixing this for IR. The default behavior with no options set is to list everything. Restored that. This should go in the 0.96.1 patch release. # Tests + Formatting Added regression test.
8 lines
146 B
Rust
8 lines
146 B
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn not_empty() {
|
|
let result = nu!("keybindings list | is-not-empty");
|
|
assert_eq!(result.out, "true");
|
|
}
|