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

8 lines
267 B
Rust

#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.pass("tests/it/identifiers/ui/01-valid-id-macros.rs");
t.compile_fail("tests/it/identifiers/ui/02-invalid-id-macros.rs");
t.compile_fail("tests/it/identifiers/ui/03-invalid-new-id-macros.rs");
}