mdbook/tests/testsuite/main.rs
Eric Huss b9e433710d Migrate build_the_dummy_book to BookTest (build::basic_build)
This doesn't exercise *everything* that the old test did, but other
tests will take care of those gaps. This is intended as just a smoke
test.
2025-04-22 20:50:20 -07:00

11 lines
214 B
Rust

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