mdbook/tests/testsuite/main.rs
2025-04-22 20:50:20 -07:00

18 lines
306 B
Rust

//! Main testsuite for exercising all functionality of mdBook.
//!
//! See README.md for documentation.
mod book_test;
mod build;
mod cli;
mod includes;
mod index;
mod init;
mod markdown;
mod playground;
mod preprocessor;
mod prelude {
pub use crate::book_test::BookTest;
pub use snapbox::str;
}