mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-31 23:38:45 +00:00
test: add test case for remove comma
This commit is contained in:
parent
2426d421b4
commit
6c9d2ad1d5
1 changed files with 105 additions and 0 deletions
|
@ -609,6 +609,111 @@ mod b {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn remove_comma_after_auto_remove_brace() {
|
||||||
|
check_assist(
|
||||||
|
remove_unused_imports,
|
||||||
|
r#"
|
||||||
|
mod m {
|
||||||
|
pub mod x {
|
||||||
|
pub struct A;
|
||||||
|
pub struct B;
|
||||||
|
}
|
||||||
|
pub mod y {
|
||||||
|
pub struct C;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$0use m::{
|
||||||
|
x::{A, B},
|
||||||
|
y::C,
|
||||||
|
};$0
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
B;
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
r#"
|
||||||
|
mod m {
|
||||||
|
pub mod x {
|
||||||
|
pub struct A;
|
||||||
|
pub struct B;
|
||||||
|
}
|
||||||
|
pub mod y {
|
||||||
|
pub struct C;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
use m::
|
||||||
|
x::B
|
||||||
|
;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
B;
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
check_assist(
|
||||||
|
remove_unused_imports,
|
||||||
|
r#"
|
||||||
|
mod m {
|
||||||
|
pub mod x {
|
||||||
|
pub struct A;
|
||||||
|
pub struct B;
|
||||||
|
}
|
||||||
|
pub mod y {
|
||||||
|
pub struct C;
|
||||||
|
pub struct D;
|
||||||
|
}
|
||||||
|
pub mod z {
|
||||||
|
pub struct E;
|
||||||
|
pub struct F;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$0use m::{
|
||||||
|
x::{A, B},
|
||||||
|
y::{C, D,},
|
||||||
|
z::{E, F},
|
||||||
|
};$0
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
B;
|
||||||
|
C;
|
||||||
|
F;
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
r#"
|
||||||
|
mod m {
|
||||||
|
pub mod x {
|
||||||
|
pub struct A;
|
||||||
|
pub struct B;
|
||||||
|
}
|
||||||
|
pub mod y {
|
||||||
|
pub struct C;
|
||||||
|
pub struct D;
|
||||||
|
}
|
||||||
|
pub mod z {
|
||||||
|
pub struct E;
|
||||||
|
pub struct F;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
use m::{
|
||||||
|
x::B,
|
||||||
|
y::C,
|
||||||
|
z::F,
|
||||||
|
};
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
B;
|
||||||
|
C;
|
||||||
|
F;
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn remove_nested_all_unused() {
|
fn remove_nested_all_unused() {
|
||||||
check_assist(
|
check_assist(
|
||||||
|
|
Loading…
Reference in a new issue