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.
11 lines
214 B
Rust
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;
|
|
}
|