This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/src/tests/args.rs

8 lines
135 B
Rust
Raw Normal View History

2017-07-12 14:40:25 +01:00
use args;
#[test]
2017-07-12 14:49:53 +01:00
fn error_if_no_subcommand() {
let out = args::get_matches_for(vec!("mdp".into()));
assert!(out.is_err());
2017-07-12 14:40:25 +01:00
}