cargo-testify 0.3.0

Tool to automatically run tests on your Rust project and notify about the result.
Documentation
1
2
3
4
5
6
7
8
9
error_chain! {
    errors {
        ProjectDirMissing { description("project directory is missing") }
    }

    foreign_links {
        PatternError(::glob::PatternError);
    }
}