diff options
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/completion/complete_path.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_path.rs b/crates/ra_ide_api/src/completion/complete_path.rs index 5ff1b9927..122dd7bdd 100644 --- a/crates/ra_ide_api/src/completion/complete_path.rs +++ b/crates/ra_ide_api/src/completion/complete_path.rs | |||
@@ -73,6 +73,18 @@ mod tests { | |||
73 | } | 73 | } |
74 | 74 | ||
75 | #[test] | 75 | #[test] |
76 | fn dont_complete_current_use_in_braces_with_glob() { | ||
77 | let completions = do_completion( | ||
78 | r" | ||
79 | mod foo { pub struct S; } | ||
80 | use self::{foo::*, bar<|>}; | ||
81 | ", | ||
82 | CompletionKind::Reference, | ||
83 | ); | ||
84 | assert_eq!(completions.len(), 2); | ||
85 | } | ||
86 | |||
87 | #[test] | ||
76 | fn completes_mod_with_docs() { | 88 | fn completes_mod_with_docs() { |
77 | check_reference_completion( | 89 | check_reference_completion( |
78 | "mod_with_docs", | 90 | "mod_with_docs", |