mdbook/tests/testsuite/main.rs
Eric Huss f10d23e893 Introduce the new BookTest-based testsuite
This is a new testsuite intended to replace the other tests, which
provides an easy facility to update tests, validate output, and more.
2025-04-22 20:50:16 -07:00

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;
}