pyo3/tests/test_doc.rs

32 lines
657 B
Rust
Raw Normal View History

extern crate docmatic;
2018-04-25 19:55:10 +00:00
use std::default::Default;
use std::path::{Path, PathBuf};
2018-04-25 19:55:10 +00:00
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(),
);
2018-04-25 19:55:10 +00:00
}
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() {
2018-04-25 19:55:10 +00:00
assert_file(entry.unwrap().path())
}
}
#[ignore]
#[test]
fn test_readme() {
2018-04-25 19:55:10 +00:00
assert_file("README.md")
}