mdBook/tests/testing.rs

29 lines
563 B
Rust
Raw Normal View History

extern crate mdbook;
extern crate tempdir;
mod dummy;
use dummy::DummyBook;
use mdbook::MDBook;
#[test]
fn mdbook_can_correctly_test_a_passing_book() {
let temp = DummyBook::default()
.with_passing_test(true)
.build();
let mut md = MDBook::new(temp.path());
assert!(md.test(vec![]).is_ok());
}
#[test]
fn mdbook_detects_book_with_failing_tests() {
let temp = DummyBook::default()
.with_passing_test(false)
.build();
let mut md: MDBook = MDBook::new(temp.path());
assert!(md.test(vec![]).is_err());
}