1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-22 12:42:28 +00:00
deprecated-gotham-restful/tests/trybuild_ui.rs
2021-03-09 20:51:44 +01:00

10 lines
222 B
Rust

use trybuild::TestCases;
#[test]
#[ignore]
fn trybuild_ui() {
let t = TestCases::new();
t.compile_fail("tests/ui/endpoint/*.rs");
t.compile_fail("tests/ui/from_body/*.rs");
t.compile_fail("tests/ui/resource/*.rs");
}