blob: 1cece81f1c1de13ecaed2f3f2a26e719c71dd0bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#[test]
fn tests() {
let t = trybuild::TestCases::new();
t.pass("tests/01-parse-impl.rs");
t.compile_fail("tests/02-not-impl.rs");
t.compile_fail("tests/03-not-trait-impl.rs");
t.pass("tests/04-generics.rs");
t.pass("tests/05-where.rs");
t.pass("tests/06-impl-trait.rs");
t.pass("tests/07-docs.rs");
t.pass("tests/08-inherent-docs.rs");
t.pass("tests/09-multiple-traits.rs");
t.pass("tests/10-multiple-traits-with-generics.rs");
t.pass("tests/11-traits-generics-docs.rs");
t.pass("tests/12-combining-generics.rs");
t.pass("tests/13-trait-generics.rs");
t.pass("tests/14-where-on-trait.rs");
t.pass("tests/98-readme.rs");
t.pass("tests/99-goal.rs");
}
|