mdbook/tests/testsuite/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
550 B
Rust
Raw Normal View History

//! 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;
2025-04-21 18:39:25 -07:00
mod cli;
mod config;
mod includes;
mod index;
mod init;
2025-04-21 19:08:27 -07:00
mod markdown;
mod playground;
mod preprocessor;
mod print;
mod redirects;
mod renderer;
mod rendering;
#[cfg(feature = "search")]
mod search;
mod test;
2025-04-22 11:05:48 -07:00
mod theme;
mod toc;
mod prelude {
pub use crate::book_test::{BookTest, glob_one, read_to_string};
pub use snapbox::str;
}