archive
/
md-pdf-rs
Archived
1
Fork 0

Add a basic test

This commit is contained in:
Jake Howard 2017-07-12 14:49:53 +01:00
parent 7013a3e0a0
commit 48cc0f26e3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,8 @@
use clap::{App, AppSettings, ArgMatches};
#[cfg(test)]
use clap::Result;
fn build() -> App<'static, 'static> {
return App::new(crate_name!())
@ -17,3 +20,8 @@ fn build() -> App<'static, 'static> {
pub fn get_matches() -> ArgMatches<'static> {
return build().get_matches();
}
#[cfg(test)]
pub fn get_matches_for(args : Vec<String>) -> Result<ArgMatches<'static>> {
return build().get_matches_from_safe(args);
}

View File

@ -1,6 +1,7 @@
use args;
#[test]
fn it_works() {
assert_eq!(4, 4);
fn error_if_no_subcommand() {
let out = args::get_matches_for(vec!("mdp".into()));
assert!(out.is_err());
}