rustspec_assertions 0.1.9

BDD style assertion library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use] extern crate rustspec_assertions;

mod matchers {
    mod equals;
    mod gt;
    mod ge;
    mod lt;
    mod le;
    mod contain;
    mod be_true;
    mod be_false;
    mod be_some;
    mod be_none;
}