MCPcopy Create free account
hub / github.com/Indosaram/rust-python-book / main

Function main

marktest/build.rs:3–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1extern crate skeptic;
2
3fn 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected