kexplain 0.1.0

Derive explanations for functions by 'showing the work' for things like math
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/01-explain.rs");
    //t.pass("tests/02-create-builder.rs");
    //t.pass("tests/03-call-setters.rs");
    //t.pass("tests/04-call-build.rs");
    //t.pass("tests/05-method-chaining.rs");
    //t.pass("tests/06-optional-field.rs");
    //t.pass("tests/07-repeated-field.rs");
    //t.compile_fail("tests/08-unrecognized-attribute.rs");
    //t.pass("tests/09-redefined-prelude-types.rs");
}