1 2 3 4 5 6 7 8 9 10 11 12 13
use std::io; use tap::Pipe; use testutils::os_cmd::{Runner, presets::CargoDoc}; #[ignore] #[test] fn build_and_open_rust_doc() -> io::Result<()> { CargoDoc::default() .with_enable_private_items(false) .pipe(Runner::from) .run() }