8 lines
165 B
Rust
8 lines
165 B
Rust
|
use assert_cmd::Command;
|
||
|
|
||
|
pub(crate) fn mdbook_cmd() -> Command {
|
||
|
let mut cmd = Command::cargo_bin("mdbook").unwrap();
|
||
|
cmd.env_remove("RUST_LOG");
|
||
|
cmd
|
||
|
}
|