mdbook/tests/cli/cmd.rs

8 lines
165 B
Rust
Raw Permalink Normal View History

2024-08-14 18:09:13 +00:00
use assert_cmd::Command;
pub(crate) fn mdbook_cmd() -> Command {
let mut cmd = Command::cargo_bin("mdbook").unwrap();
cmd.env_remove("RUST_LOG");
cmd
}