1 2 3 4 5 6 7
use assert_cmd::Command; pub(crate) fn mdbook_cmd() -> Command { let mut cmd = Command::cargo_bin("mdbook").unwrap(); cmd.env_remove("RUST_LOG"); cmd }