mirror of
https://github.com/rust-lang/mdBook
synced 2024-12-14 06:42:35 +00:00
8542f7f29d
* Transition to 2018 edition * Update Travis CI badge in README * Remove non-idiomatic `extern crate` lines
21 lines
522 B
Rust
21 lines
522 B
Rust
mod dummy_book;
|
|
|
|
use crate::dummy_book::DummyBook;
|
|
|
|
use mdbook::MDBook;
|
|
|
|
#[test]
|
|
fn mdbook_can_correctly_test_a_passing_book() {
|
|
let temp = DummyBook::new().with_passing_test(true).build().unwrap();
|
|
let mut md = MDBook::load(temp.path()).unwrap();
|
|
|
|
assert!(md.test(vec![]).is_ok());
|
|
}
|
|
|
|
#[test]
|
|
fn mdbook_detects_book_with_failing_tests() {
|
|
let temp = DummyBook::new().with_passing_test(false).build().unwrap();
|
|
let mut md = MDBook::load(temp.path()).unwrap();
|
|
|
|
assert!(md.test(vec![]).is_err());
|
|
}
|