nushell/crates/nu-cli/tests/commands/keybindings_list.rs
2024-07-25 12:50:38 -07:00

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");
}