Jonas Platte 7051892077 Move integration tests one directory level deeper
… and rename from tests to it (integration tests).
This allows enabling the mod_module_files lint everywhere again.
2024-09-11 07:13:32 +00:00

11 lines
387 B
Rust

#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.pass("tests/it/api/ui/api-sanity-check.rs");
t.pass("tests/it/api/ui/move-value.rs");
t.pass("tests/it/api/ui/request-only.rs");
t.pass("tests/it/api/ui/response-only.rs");
t.compile_fail("tests/it/api/ui/deprecated-without-added.rs");
t.compile_fail("tests/it/api/ui/removed-without-deprecated.rs");
}