rust/tests/run-make/rustdoc-output-path/rmake.rs
2024-05-10 10:40:14 +02:00

10 lines
267 B
Rust

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