From 9738fb48a68bee087e441f09edfc56bdbd827f35 Mon Sep 17 00:00:00 2001
From: Aleksey Kladov <aleksey.kladov@gmail.com>
Date: Tue, 19 Feb 2019 19:51:48 +0300
Subject: remove ignored macro tests

we need to significantly reengineer macros, so the tests as they exist
are useless
---
 crates/ra_hir/src/nameres/tests.rs | 30 ------------------------------
 1 file changed, 30 deletions(-)

(limited to 'crates/ra_hir/src')

diff --git a/crates/ra_hir/src/nameres/tests.rs b/crates/ra_hir/src/nameres/tests.rs
index 6402c89c0..9b151bb0c 100644
--- a/crates/ra_hir/src/nameres/tests.rs
+++ b/crates/ra_hir/src/nameres/tests.rs
@@ -401,36 +401,6 @@ fn name_res_works_for_broken_modules() {
     );
 }
 
-#[test]
-#[ignore]
-fn item_map_contains_items_from_expansions() {
-    let (item_map, module_id) = item_map(
-        "
-        //- /lib.rs
-        mod foo;
-
-        use crate::foo::bar::Baz;
-        <|>
-
-        //- /foo/mod.rs
-        pub mod bar;
-
-        //- /foo/bar.rs
-        salsa::query_group! {
-            trait Baz {}
-        }
-    ",
-    );
-    check_module_item_map(
-        &item_map,
-        module_id,
-        "
-            Baz: t
-            foo: t
-        ",
-    );
-}
-
 #[test]
 fn item_map_using_self() {
     let (item_map, module_id) = item_map(
-- 
cgit v1.2.3