lit 0.2.3

Integrated testing tool
Documentation
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();
}