mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
13 lines
458 B
Rust
13 lines
458 B
Rust
|
#[test]
|
||
|
fn tests() {
|
||
|
let t = trybuild::TestCases::new();
|
||
|
t.pass("tests/01-parse-struct.rs");
|
||
|
t.compile_fail("tests/02-not-or-bad-struct.rs");
|
||
|
//t.compile_fail("tests/03-out-of-order.rs");
|
||
|
//t.compile_fail("tests/04-variants-with-data.rs");
|
||
|
//t.compile_fail("tests/05-match-expr.rs");
|
||
|
//t.compile_fail("tests/06-pattern-path.rs");
|
||
|
//t.compile_fail("tests/07-unrecognized-pattern.rs");
|
||
|
//t.pass("tests/08-underscore.rs");
|
||
|
}
|