mirror of
https://github.com/rust-lang/mdBook.git
synced 2025-12-27 09:05:40 -05:00
This enables the hash-files setting by default. We have been running it for a while, and it seems most of the issues have been resolved. This should help with more reliably loading content like the toc contents.
31 lines
550 B
Rust
31 lines
550 B
Rust
//! Main testsuite for exercising all functionality of mdBook.
|
|
//!
|
|
//! See README.md for documentation.
|
|
|
|
#![allow(unreachable_pub, reason = "not needed in an integration test crate")]
|
|
|
|
mod book_test;
|
|
mod build;
|
|
mod cli;
|
|
mod config;
|
|
mod includes;
|
|
mod index;
|
|
mod init;
|
|
mod markdown;
|
|
mod playground;
|
|
mod preprocessor;
|
|
mod print;
|
|
mod redirects;
|
|
mod renderer;
|
|
mod rendering;
|
|
#[cfg(feature = "search")]
|
|
mod search;
|
|
mod test;
|
|
mod theme;
|
|
mod toc;
|
|
|
|
mod prelude {
|
|
pub use crate::book_test::{BookTest, glob_one, read_to_string};
|
|
pub use snapbox::str;
|
|
}
|