13 lines
236 B
Rust
Raw Normal View History

2025-06-27 02:33:44 +01:00
use nu_test_support::nu;
#[test]
fn export_subcommands_help() {
let actual = nu!("export def -h");
assert!(
actual
.out
.contains("Define a custom command and export it from a module")
);
}