32 lines
657 B
Rust
32 lines
657 B
Rust
extern crate docmatic;
|
|
|
|
use std::default::Default;
|
|
use std::path::{Path, PathBuf};
|
|
|
|
fn assert_file<P: AsRef<Path>>(path: P) {
|
|
let mut doc = docmatic::Assert::default();
|
|
if cfg!(windows) {
|
|
doc.library_path(
|
|
option_env!("PYTHON")
|
|
.map(|py| PathBuf::from(py).join("libs"))
|
|
.unwrap(),
|
|
);
|
|
}
|
|
doc.test_file(path.as_ref())
|
|
}
|
|
|
|
#[ignore]
|
|
#[test]
|
|
fn test_guide() {
|
|
let guide_path = PathBuf::from("guide").join("src");
|
|
for entry in guide_path.read_dir().unwrap() {
|
|
assert_file(entry.unwrap().path())
|
|
}
|
|
}
|
|
|
|
#[ignore]
|
|
#[test]
|
|
fn test_readme() {
|
|
assert_file("README.md")
|
|
}
|