test: add test for excluding refs

This commit is contained in:
Young-Flash 2024-01-28 18:39:42 +08:00
parent 6f303f49fe
commit 1bd21e98c0

View File

@ -307,6 +307,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(