2025-04-21 18:22:08 -07:00
|
|
|
//! Main testsuite for exercising all functionality of mdBook.
|
|
|
|
|
//!
|
|
|
|
|
//! See README.md for documentation.
|
|
|
|
|
|
2025-07-25 09:02:55 -07:00
|
|
|
#![allow(unreachable_pub, reason = "not needed in an integration test crate")]
|
|
|
|
|
|
2025-04-21 18:22:08 -07:00
|
|
|
mod book_test;
|
2025-04-21 18:25:43 -07:00
|
|
|
mod build;
|
2025-04-21 18:39:25 -07:00
|
|
|
mod cli;
|
2025-08-12 15:00:53 -07:00
|
|
|
mod config;
|
2025-04-21 18:42:20 -07:00
|
|
|
mod includes;
|
2025-04-21 18:53:36 -07:00
|
|
|
mod index;
|
2025-04-21 18:56:10 -07:00
|
|
|
mod init;
|
2025-04-21 19:08:27 -07:00
|
|
|
mod markdown;
|
2025-04-21 19:11:07 -07:00
|
|
|
mod playground;
|
2025-04-21 19:16:29 -07:00
|
|
|
mod preprocessor;
|
2025-04-21 19:23:24 -07:00
|
|
|
mod print;
|
2025-04-21 19:25:44 -07:00
|
|
|
mod redirects;
|
2025-04-21 19:28:17 -07:00
|
|
|
mod renderer;
|
2025-04-22 08:54:31 -07:00
|
|
|
mod rendering;
|
2025-04-22 09:00:47 -07:00
|
|
|
#[cfg(feature = "search")]
|
|
|
|
|
mod search;
|
2025-04-22 10:56:05 -07:00
|
|
|
mod test;
|
2025-04-22 11:05:48 -07:00
|
|
|
mod theme;
|
2025-04-22 11:17:40 -07:00
|
|
|
mod toc;
|
2025-04-21 18:22:08 -07:00
|
|
|
|
|
|
|
|
mod prelude {
|
2025-08-26 15:58:18 -07:00
|
|
|
pub use crate::book_test::{BookTest, glob_one, read_to_string};
|
2025-04-21 18:22:08 -07:00
|
|
|
pub use snapbox::str;
|
|
|
|
|
}
|