Skip to content

Commit 33d4ab6

Browse files
committed
updated tests
1 parent 9b61903 commit 33d4ab6

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

src/tools/rust-analyzer/crates/ide/src/expand_macro.rs

+14-17
Original file line numberDiff line numberDiff line change
@@ -230,29 +230,26 @@ mod tests {
230230
}
231231

232232
#[test]
233-
fn only_expand_allowed_builtin_macro() {
234-
let fail_tests = [r#"
235-
//- minicore: asm
236-
$0asm!("0x300, x0");
237-
"#];
238-
239-
for test in fail_tests {
240-
let (analysis, pos) = fixture::position(test);
241-
let expansion = analysis.expand_macro(pos).unwrap();
242-
assert!(expansion.is_none());
243-
}
244-
245-
let tests = [(
233+
fn expand_allowed_builtin_macro() {
234+
check(
246235
r#"
247236
//- minicore: concat
248237
$0concat!("test", 10, 'b', true);"#,
249238
expect![[r#"
250239
concat!
251240
"test10btrue""#]],
252-
)];
253-
for (test, expect) in tests {
254-
check(test, expect);
255-
}
241+
);
242+
}
243+
244+
#[test]
245+
fn do_not_expand_disallowed_macro() {
246+
let (analysis, pos) = fixture::position(
247+
r#"
248+
//- minicore: asm
249+
$0asm!("0x300, x0");"#,
250+
);
251+
let expansion = analysis.expand_macro(pos).unwrap();
252+
assert!(expansion.is_none());
256253
}
257254

258255
#[test]

0 commit comments

Comments
 (0)