1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 09:23:00 +01:00
actix-net/actix-macros/tests/trybuild.rs

12 lines
390 B
Rust
Raw Normal View History

2020-04-26 21:11:16 +02:00
#[test]
fn compile_macros() {
let t = trybuild::TestCases::new();
t.pass("tests/trybuild/main-01-basic.rs");
t.compile_fail("tests/trybuild/main-02-only-async.rs");
2021-02-02 03:07:58 +01:00
t.pass("tests/trybuild/main-03-fn-params.rs");
2020-04-26 21:11:16 +02:00
t.pass("tests/trybuild/test-01-basic.rs");
t.pass("tests/trybuild/test-02-keep-attrs.rs");
2021-02-02 03:07:58 +01:00
t.compile_fail("tests/trybuild/test-03-only-async.rs");
2020-04-26 21:11:16 +02:00
}