mirror of
https://github.com/actix/actix-web.git
synced 2024-11-13 04:11:09 +00:00
509b2e6eec
Co-authored-by: Rob Ede <robjtede@icloud.com>
27 lines
815 B
Rust
27 lines
815 B
Rust
#[test]
|
|
fn compile_macros() {
|
|
let t = trybuild::TestCases::new();
|
|
|
|
t.pass("tests/trybuild/simple.rs");
|
|
t.compile_fail("tests/trybuild/simple-fail.rs");
|
|
|
|
t.pass("tests/trybuild/route-ok.rs");
|
|
t.compile_fail("tests/trybuild/route-duplicate-method-fail.rs");
|
|
t.compile_fail("tests/trybuild/route-unexpected-method-fail.rs");
|
|
|
|
test_route_missing_method(&t)
|
|
}
|
|
|
|
#[rustversion::stable(1.42)]
|
|
fn test_route_missing_method(t: &trybuild::TestCases) {
|
|
t.compile_fail("tests/trybuild/route-missing-method-fail-msrv.rs");
|
|
}
|
|
|
|
#[rustversion::not(stable(1.42))]
|
|
#[rustversion::not(nightly)]
|
|
fn test_route_missing_method(t: &trybuild::TestCases) {
|
|
t.compile_fail("tests/trybuild/route-missing-method-fail.rs");
|
|
}
|
|
|
|
#[rustversion::nightly]
|
|
fn test_route_missing_method(_t: &trybuild::TestCases) {}
|