12 lines
223 B
Rust
12 lines
223 B
Rust
//! Main testsuite for exercising all functionality of mdBook.
|
|
//!
|
|
//! See README.md for documentation.
|
|
|
|
mod book_test;
|
|
mod build;
|
|
mod cli;
|
|
|
|
mod prelude {
|
|
pub use crate::book_test::BookTest;
|
|
pub use snapbox::str;
|
|
}
|