aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/nameres/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/nameres/tests.rs')
-rw-r--r--crates/ra_hir/src/nameres/tests.rs16
1 files changed, 12 insertions, 4 deletions
diff --git a/crates/ra_hir/src/nameres/tests.rs b/crates/ra_hir/src/nameres/tests.rs
index 958871b17..14c8ee50b 100644
--- a/crates/ra_hir/src/nameres/tests.rs
+++ b/crates/ra_hir/src/nameres/tests.rs
@@ -61,8 +61,8 @@ fn def_map(fixtute: &str) -> String {
61 render_crate_def_map(&dm) 61 render_crate_def_map(&dm)
62} 62}
63 63
64fn def_map_with_crate_graph(fixtute: &str, graph: CrateGraphFixture) -> String { 64fn def_map_with_crate_graph(fixture: &str, graph: CrateGraphFixture) -> String {
65 let dm = compute_crate_def_map(fixtute, Some(graph)); 65 let dm = compute_crate_def_map(fixture, Some(graph));
66 render_crate_def_map(&dm) 66 render_crate_def_map(&dm)
67} 67}
68 68
@@ -423,8 +423,12 @@ fn extern_crate_rename() {
423 ); 423 );
424 424
425 assert_snapshot_matches!(map, @r###" 425 assert_snapshot_matches!(map, @r###"
426 ⋮crate 426 ⋮crate
427 ⋮Arc: t v 427 ⋮alloc_crate: t
428 ⋮sync: t
429
430 ⋮crate::sync
431 ⋮Arc: t v
428 "###); 432 "###);
429} 433}
430 434
@@ -453,6 +457,10 @@ fn extern_crate_rename_2015_edition() {
453 assert_snapshot_matches!(map, 457 assert_snapshot_matches!(map,
454 @r###" 458 @r###"
455 ⋮crate 459 ⋮crate
460 ⋮alloc_crate: t
461 ⋮sync: t
462
463 ⋮crate::sync
456 ⋮Arc: t v 464 ⋮Arc: t v
457 "### 465 "###
458 ); 466 );