diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2021-03-22 20:50:59 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2021-03-22 20:52:47 -0300 |
commit | 5bb562ad496f9ec42ec59abfe31d3576266c6a6d (patch) | |
tree | 4c792fcc67d4211c6c5b4a0e18ebb832b0d4ce66 /tests/progress.rs |
Initial commit
Diffstat (limited to 'tests/progress.rs')
-rw-r--r-- | tests/progress.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/progress.rs b/tests/progress.rs new file mode 100644 index 0000000..aa42baa --- /dev/null +++ b/tests/progress.rs @@ -0,0 +1,14 @@ +#[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/98-readme.rs"); + t.pass("tests/99-goal.rs"); +} |