Skip to content

Commit 8ab0fc3

Browse files
committed
added tests
1 parent e728026 commit 8ab0fc3

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

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

+26
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,32 @@ mod tests {
228228
expect.assert_eq(&actual);
229229
}
230230

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

0 commit comments

Comments
 (0)