()
| 1 | extern crate skeptic; |
| 2 | |
| 3 | fn main() { |
| 4 | // Get list of .md files in src directory |
| 5 | let files = std::fs::read_dir("../src").unwrap(); |
| 6 | |
| 7 | // To a array |
| 8 | let files: Vec<_> = files.map(|f| f.unwrap().path()).collect(); |
| 9 | |
| 10 | skeptic::generate_doc_tests(&files); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected