Unnamed repository; edit this file 'description' to name the repository.
test: add test for excluding refs
Young-Flash 2024-01-28
parent 6f303f4 · commit 1bd21e9
-rw-r--r--crates/ide/src/references.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/ide/src/references.rs b/crates/ide/src/references.rs
index bcf862012a..4b695612a6 100644
--- a/crates/ide/src/references.rs
+++ b/crates/ide/src/references.rs
@@ -308,6 +308,30 @@ mod tests {
use crate::{fixture, SearchScope};
#[test]
+ fn exclude_tests() {
+ check(
+ r#"
+fn test_func() {}
+
+fn func() {
+ test_func$0();
+}
+
+#[test]
+fn test() {
+ test_func();
+}
+"#,
+ expect![[r#"
+ test_func Function FileId(0) 0..17 3..12
+
+ FileId(0) 35..44
+ FileId(0) 75..84 Test
+ "#]],
+ );
+ }
+
+ #[test]
fn test_struct_literal_after_space() {
check(
r#"