runit 0.1.0

A test framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(
    missing_copy_implementations,
    missing_debug_implementations,
    missing_docs,
    rust_2018_idioms
)]
//! runit provides a test framework for Rust.

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}