nu-cli 0.112.1

CLI-related functionality for Nushell
Documentation
1
2
3
4
5
6
7
use nu_test_support::nu;

#[test]
fn not_empty() {
    let result = nu!("keybindings list | is-not-empty");
    assert_eq!(result.out, "true");
}