diff options
author | Aleksey Kladov <[email protected]> | 2019-03-25 11:28:04 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-03-25 11:29:24 +0000 |
commit | 309716cffe93d065bcad0344b0f332425576c1e5 (patch) | |
tree | e4d602a1548ea7e0ebe565f9ff5c702b9e153a8e /crates/ra_ide_api/src | |
parent | e9af69d9db8856d79f0da7ae7da66169cc225aac (diff) |
move tests to where they belong
Diffstat (limited to 'crates/ra_ide_api/src')
-rw-r--r-- | crates/ra_ide_api/src/diagnostics.rs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/diagnostics.rs b/crates/ra_ide_api/src/diagnostics.rs index 841103322..5a78e94d8 100644 --- a/crates/ra_ide_api/src/diagnostics.rs +++ b/crates/ra_ide_api/src/diagnostics.rs | |||
@@ -152,6 +152,9 @@ fn check_struct_shorthand_initialization( | |||
152 | #[cfg(test)] | 152 | #[cfg(test)] |
153 | mod tests { | 153 | mod tests { |
154 | use test_utils::assert_eq_text; | 154 | use test_utils::assert_eq_text; |
155 | use insta::assert_debug_snapshot_matches; | ||
156 | |||
157 | use crate::mock_analysis::single_file; | ||
155 | 158 | ||
156 | use super::*; | 159 | use super::*; |
157 | 160 | ||
@@ -181,6 +184,34 @@ mod tests { | |||
181 | } | 184 | } |
182 | 185 | ||
183 | #[test] | 186 | #[test] |
187 | fn test_unresolved_module_diagnostic() { | ||
188 | let (analysis, file_id) = single_file("mod foo;"); | ||
189 | let diagnostics = analysis.diagnostics(file_id).unwrap(); | ||
190 | assert_debug_snapshot_matches!(diagnostics, @r####"[ | ||
191 | Diagnostic { | ||
192 | message: "unresolved module", | ||
193 | range: [0; 8), | ||
194 | fix: Some( | ||
195 | SourceChange { | ||
196 | label: "create module", | ||
197 | source_file_edits: [], | ||
198 | file_system_edits: [ | ||
199 | CreateFile { | ||
200 | source_root: SourceRootId( | ||
201 | 0 | ||
202 | ), | ||
203 | path: "foo.rs" | ||
204 | } | ||
205 | ], | ||
206 | cursor_position: None | ||
207 | } | ||
208 | ), | ||
209 | severity: Error | ||
210 | } | ||
211 | ]"####); | ||
212 | } | ||
213 | |||
214 | #[test] | ||
184 | fn test_check_unnecessary_braces_in_use_statement() { | 215 | fn test_check_unnecessary_braces_in_use_statement() { |
185 | check_not_applicable( | 216 | check_not_applicable( |
186 | " | 217 | " |