lit 0.2.3

Integrated testing tool
Documentation
extern crate lit;

use std::env::consts;

fn main() {
    lit::run::tests(|config| {
        config.add_search_path("test/");
        config.add_extension("cpp");

        config.constants.insert("arch".to_owned(), consts::ARCH.to_owned());
        config.constants.insert("os".to_owned(), consts::OS.to_owned());
    }).unwrap()
}