chore: add unapplicable test for extract_variable without select

This commit is contained in:
Young-Flash 2023-10-28 10:06:09 +08:00
parent 00cdbe6c96
commit 7186a28717

View File

@ -350,6 +350,32 @@ fn main() {
);
}
#[test]
fn test_extract_var_unit_expr_without_select_not_applicable() {
check_assist_not_applicable(
extract_variable,
r#"
fn foo() {}
fn main() {
foo()$0;
}
"#,
);
check_assist_not_applicable(
extract_variable,
r#"
fn foo() {
let mut i = 3;
if i >= 0 {
i += 1;
} else {
i -= 1;
}$0
}"#,
);
}
#[test]
fn test_extract_var_simple() {
check_assist(