2021-02-26 21:05:22 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
2021-03-13 22:46:40 +01:00
|
|
|
fn help_commands_length() {
|
2021-02-26 21:05:22 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2021-03-13 22:46:40 +01:00
|
|
|
help commands | length
|
2021-02-26 21:05:22 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
let output = actual.out;
|
|
|
|
let output_int: i32 = output.parse().unwrap();
|
|
|
|
let is_positive = output_int.is_positive();
|
|
|
|
assert!(is_positive);
|
|
|
|
}
|
2022-11-20 14:22:42 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_shows_signature() {
|
|
|
|
let actual = nu!(cwd: ".", pipeline("help str distance"));
|
|
|
|
assert!(actual
|
|
|
|
.out
|
|
|
|
.contains("<string> | str distance <string> -> <int>"));
|
|
|
|
|
|
|
|
// don't show signature for parser keyword
|
|
|
|
let actual = nu!(cwd: ".", pipeline("help alias"));
|
|
|
|
assert!(!actual.out.contains("Signatures"));
|
|
|
|
}
|