restest 0.1.0

Black-box integration test for REST APIs in Rust.
Documentation
1
2
3
4
5
6
#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    t.pass("tests/ok/*.rs");
    t.compile_fail("tests/err/*.rs");
}