mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 18:30:40 +00:00
13 lines
331 B
Rust
13 lines
331 B
Rust
#[cfg(feature = "skeptic")]
|
|
fn main() {
|
|
extern crate skeptic;
|
|
|
|
skeptic::generate_doc_tests(&["Readme.md",
|
|
"doc/tutorial_1.md",
|
|
"doc/tutorial_2.md",
|
|
"doc/tutorial_3.md" ]);
|
|
}
|
|
|
|
#[cfg(not(feature = "skeptic"))]
|
|
fn main() {}
|