//! Tests for `mdbook init`. use crate::prelude::*; use mdbook::MDBook; // Tests "init" with no args. #[test] fn basic_init() { let mut test = BookTest::empty(); test.run("init", |cmd| { cmd.expect_stdout(str![[r#" Do you want a .gitignore to be created? (y/n) What title would you like to give the book? All done, no errors... "#]]) .expect_stderr(str![[r#" [TIMESTAMP] [INFO] (mdbook::book::init): Creating a new book with stub content "#]]); }) .check_file( "book.toml", str![[r#" [book] authors = [] language = "en" src = "src" "#]], ) .check_file( "src/SUMMARY.md", str "#]], ) .check_file( "src/chapter_1.md", str![[r#" # Chapter 1 "#]], ) .check_main_file( "book/chapter_1.html", str![[r##"