rust-turbo 0.2.0

Use this library to build a cargo like command line using the command pattern. An implementation using rust-turbo can be found at https://github.com/megamsys/meg.git
extern crate rustc_serialize;
extern crate turbo;
extern crate hamcrest;
extern crate term;
extern crate tempdir;

#[macro_use]
extern crate log;

mod support;
macro_rules! test {
    ($name:ident $expr:expr) => (
        #[test]
        fn $name() {
            $expr;
        }
    )
}

mod test_shell;