mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
f53aa6fcbf
# Description Fixes: #12941 ~~The issue is cause by some columns(is_builtin, is_plugin, is_custom, is_keyword) are removed in #10023~~ Edit: I'm wrong # Tests + Formatting Added one test for `std help`
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
use std assert
|
|
use std help
|
|
|
|
#[test]
|
|
def show_help_on_commands [] {
|
|
let help_result = (help alias)
|
|
assert ("item not found" not-in $help_result)
|
|
}
|
|
|