mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
10 lines
156 B
Text
10 lines
156 B
Text
|
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)
|
||
|
}
|
||
|
|