typeway 0.1.0

Type-level web framework for Rust: your API is a type
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn compile_fail() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/compile_fail/*.rs");
}

#[test]
fn compile_pass() {
    let t = trybuild::TestCases::new();
    t.pass("tests/compile_pass/*.rs");
}