Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/src/tests/use_tree.rs')
-rw-r--r--crates/ide-completion/src/tests/use_tree.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/ide-completion/src/tests/use_tree.rs b/crates/ide-completion/src/tests/use_tree.rs
index 2d2ec864d3..c169a62077 100644
--- a/crates/ide-completion/src/tests/use_tree.rs
+++ b/crates/ide-completion/src/tests/use_tree.rs
@@ -10,18 +10,23 @@ fn check(ra_fixture: &str, expect: Expect) {
#[test]
fn use_tree_start() {
- cov_mark::check!(unqualified_path_only_modules_in_import);
+ cov_mark::check!(unqualified_path_selected_only);
check(
r#"
//- /lib.rs crate:main deps:other_crate
use f$0
struct Foo;
+enum FooBar {
+ Foo,
+ Bar
+}
mod foo {}
//- /other_crate/lib.rs crate:other_crate
// nothing here
"#,
expect![[r#"
+ en FooBar::
md foo
md other_crate
kw crate::