This is a new testsuite intended to replace the other tests, which provides an easy facility to update tests, validate output, and more.
10 lines
203 B
Rust
10 lines
203 B
Rust
//! Main testsuite for exercising all functionality of mdBook.
|
|
//!
|
|
//! See README.md for documentation.
|
|
|
|
mod book_test;
|
|
|
|
mod prelude {
|
|
pub use crate::book_test::BookTest;
|
|
pub use snapbox::str;
|
|
}
|