diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-27 15:55:47 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-27 15:55:47 +0000 |
commit | 3f4f50baaa21cb2d0f6c102f1ca521946071a8dc (patch) | |
tree | 2de93a338992d963f265ef35b53e55f8d3f1ec66 /crates/ra_ide_api/tests/test | |
parent | b2b62b9579e9eefbce27b8a9b799fbd59438ce36 (diff) | |
parent | b775fa285c985821f38f09c25507d80ee793ecfd (diff) |
Merge #690
690: Fix module resolution for non standard filenames r=matklad a=regiontog
fixes #668
Co-authored-by: Erlend Tobiassen <[email protected]>
Diffstat (limited to 'crates/ra_ide_api/tests/test')
-rw-r--r-- | crates/ra_ide_api/tests/test/main.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/ra_ide_api/tests/test/main.rs b/crates/ra_ide_api/tests/test/main.rs index 756075190..c2cb38f7e 100644 --- a/crates/ra_ide_api/tests/test/main.rs +++ b/crates/ra_ide_api/tests/test/main.rs | |||
@@ -1,9 +1,9 @@ | |||
1 | use insta::assert_debug_snapshot_matches; | ||
1 | use ra_ide_api::{ | 2 | use ra_ide_api::{ |
2 | AnalysisChange, | 3 | mock_analysis::{single_file, single_file_with_position, MockAnalysis}, |
3 | CrateGraph, FileId, mock_analysis::{MockAnalysis, single_file, single_file_with_position}, Query, | 4 | AnalysisChange, CrateGraph, FileId, Query, |
4 | }; | 5 | }; |
5 | use ra_syntax::TextRange; | 6 | use ra_syntax::TextRange; |
6 | use insta::assert_debug_snapshot_matches; | ||
7 | 7 | ||
8 | #[test] | 8 | #[test] |
9 | fn test_unresolved_module_diagnostic() { | 9 | fn test_unresolved_module_diagnostic() { |
@@ -26,12 +26,12 @@ fn test_resolve_crate_root() { | |||
26 | " | 26 | " |
27 | //- /bar.rs | 27 | //- /bar.rs |
28 | mod foo; | 28 | mod foo; |
29 | //- /bar/foo.rs | 29 | //- /foo.rs |
30 | // emtpy <|> | 30 | // empty <|> |
31 | ", | 31 | ", |
32 | ); | 32 | ); |
33 | let root_file = mock.id_of("/bar.rs"); | 33 | let root_file = mock.id_of("/bar.rs"); |
34 | let mod_file = mock.id_of("/bar/foo.rs"); | 34 | let mod_file = mock.id_of("/foo.rs"); |
35 | let mut host = mock.analysis_host(); | 35 | let mut host = mock.analysis_host(); |
36 | assert!(host.analysis().crate_for(mod_file).unwrap().is_empty()); | 36 | assert!(host.analysis().crate_for(mod_file).unwrap().is_empty()); |
37 | 37 | ||