mirror of
https://github.com/actix/actix-web.git
synced 2024-11-14 04:41:15 +00:00
8759d79b03
* WIP: basic implementation for `routes` macro * chore: changelog, docs, tests * error on missing methods * Apply suggestions from code review Co-authored-by: Igor Aleksanov <popzxc@yandex.ru> * update test stderr expectation * add additional tests * fix stderr output * remove useless ResourceType this is dead code from back when .to and .to_async were different ways to add a service Co-authored-by: Igor Aleksanov <popzxc@yandex.ru> Co-authored-by: Rob Ede <robjtede@icloud.com>
22 lines
791 B
Rust
22 lines
791 B
Rust
#[rustversion::stable(1.57)] // MSRV
|
|
#[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-missing-method-fail.rs");
|
|
t.compile_fail("tests/trybuild/route-duplicate-method-fail.rs");
|
|
t.compile_fail("tests/trybuild/route-unexpected-method-fail.rs");
|
|
t.compile_fail("tests/trybuild/route-malformed-path-fail.rs");
|
|
|
|
t.pass("tests/trybuild/routes-ok.rs");
|
|
t.compile_fail("tests/trybuild/routes-missing-method-fail.rs");
|
|
t.compile_fail("tests/trybuild/routes-missing-args-fail.rs");
|
|
|
|
t.pass("tests/trybuild/docstring-ok.rs");
|
|
|
|
t.pass("tests/trybuild/test-runtime.rs");
|
|
}
|