describer 0.2.1

Struct describing helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/simple.rs");
    t.pass("tests/multiple_types.rs");
    t.pass("tests/unit.rs");
    t.pass("tests/simple_enum.rs");
    t.compile_fail("tests/err_tuple_struct.rs");
    t.pass("tests/optionals.rs");
    t.pass("tests/hide_optional.rs");
    t.pass("tests/linear_collections.rs");
    t.pass("tests/keyval_collections.rs");
    t.pass("tests/separator.rs");
    t.pass("tests/hide_name.rs");
}