clap/tests/yaml.rs

39 lines
1.1 KiB
Rust
Raw Normal View History

2018-01-25 04:05:05 +00:00
#![cfg(feature = "yaml")]
2021-11-18 20:27:21 +00:00
#![allow(deprecated)]
2016-01-12 05:13:14 +00:00
use clap::{load_yaml, App};
#[test]
fn create_app_from_yaml() {
let yml = load_yaml!("app.yml");
App::from_yaml(yml);
2016-01-12 05:13:14 +00:00
}
#[test]
fn help_message() {
let yml = load_yaml!("app.yml");
let mut app = App::from_yaml(yml);
// Generate the full help message!
let _ = app.get_matches_from_safe_borrow(Vec::<String>::new());
let mut help_buffer = Vec::new();
app.write_help(&mut help_buffer).unwrap();
let help_string = String::from_utf8(help_buffer).unwrap();
println!("{}", &help_string);
assert!(help_string.contains("tests positionals with exclusions\n"));
}
#[test]
fn author() {
let yml = load_yaml!("app.yml");
let mut app = App::from_yaml(yml);
// Generate the full help message!
let _ = app.get_matches_from_safe_borrow(Vec::<String>::new());
let mut help_buffer = Vec::new();
app.write_help(&mut help_buffer).unwrap();
let help_string = String::from_utf8(help_buffer).unwrap();
println!("{}", &help_string);
2018-01-25 04:05:05 +00:00
assert!(help_string.contains("Kevin K. <kbknapp@gmail.com>"));
}