2024-08-15 15:44:29 +02:00

12 lines
274 B
Rust

// Checks that if the output folder doesn't exist, rustdoc will create it.
use std::path::Path;
use run_make_support::rustdoc;
fn main() {
let out_dir = Path::new("foo/bar/doc");
rustdoc().input("foo.rs").out_dir(&out_dir).run();
assert!(out_dir.exists());
}