19 lines
517 B
Rust
19 lines
517 B
Rust
|
|
//! General build tests.
|
||
|
|
//!
|
||
|
|
//! More specific tests should usually go into a module based on the feature.
|
||
|
|
//! This module should just have general build tests, or misc small things.
|
||
|
|
|
||
|
|
use crate::prelude::*;
|
||
|
|
|
||
|
|
// Simple smoke test that building works.
|
||
|
|
#[test]
|
||
|
|
fn basic_build() {
|
||
|
|
BookTest::from_dir("build/basic_build").run("build", |cmd| {
|
||
|
|
cmd.expect_stderr(str![[r#"
|
||
|
|
[TIMESTAMP] [INFO] (mdbook::book): Book building has started
|
||
|
|
[TIMESTAMP] [INFO] (mdbook::book): Running the html backend
|
||
|
|
|
||
|
|
"#]]);
|
||
|
|
});
|
||
|
|
}
|