mdBook/src/cmd/test.rs

25 lines
712 B
Rust
Raw Normal View History

use clap::{App, ArgMatches, SubCommand};
use get_book_dir;
2018-07-24 01:45:01 +08:00
use mdbook::errors::Result;
use mdbook::MDBook;
// Create clap subcommand arguments
pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> {
SubCommand::with_name("test")
.about("Test that code samples compile")
2018-07-24 01:45:01 +08:00
.arg_from_usage("-L, --library-path [DIR]... 'directory to add to crate search path'")
}
// test command implementation
pub fn execute(args: &ArgMatches) -> Result<()> {
let library_paths: Vec<&str> = args.values_of("library-path")
2018-07-24 01:45:01 +08:00
.map(|v| v.collect())
.unwrap_or_default();
let book_dir = get_book_dir(args);
let mut book = MDBook::load(&book_dir)?;
book.test(library_paths)?;
Ok(())
}