2021-05-24 15:09:38 +00:00
|
|
|
#[rustversion::stable(1.46)] // MSRV
|
2020-09-13 15:31:08 +00:00
|
|
|
#[test]
|
|
|
|
fn compile_macros() {
|
|
|
|
let t = trybuild::TestCases::new();
|
|
|
|
|
|
|
|
t.pass("tests/trybuild/simple.rs");
|
|
|
|
t.compile_fail("tests/trybuild/simple-fail.rs");
|
2020-09-16 21:37:41 +00:00
|
|
|
|
|
|
|
t.pass("tests/trybuild/route-ok.rs");
|
|
|
|
t.compile_fail("tests/trybuild/route-missing-method-fail.rs");
|
2020-10-19 02:52:05 +00:00
|
|
|
t.compile_fail("tests/trybuild/route-duplicate-method-fail.rs");
|
|
|
|
t.compile_fail("tests/trybuild/route-unexpected-method-fail.rs");
|
2021-02-24 12:26:56 +00:00
|
|
|
|
|
|
|
t.pass("tests/trybuild/docstring-ok.rs");
|
2020-10-19 02:52:05 +00:00
|
|
|
}
|