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