… and rename from tests to it (integration tests). This allows enabling the mod_module_files lint everywhere again.
8 lines
267 B
Rust
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");
|
|
}
|