mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-22 12:42:28 +00:00
10 lines
222 B
Rust
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");
|
|
}
|