lit 0.2.4

Integrated testing tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
use run;

const CRATE_PATH: &'static str = env!("CARGO_MANIFEST_DIR");

#[test]
fn thing() {
    run::tests(|config| {
        config.add_search_path(format!("{}/tests", CRATE_PATH));
        config.add_extension("txt");
    }).unwrap();
}