aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/world.rs
diff options
context:
space:
mode:
authorOmer Ben-Amram <[email protected]>2019-12-15 15:54:24 +0000
committerOmer Ben-Amram <[email protected]>2019-12-15 15:54:24 +0000
commit40116af598ef51cab8a1059dceda7508f994387c (patch)
treeefb5b8709f484aff96bf8238638d6387796c79a4 /crates/ra_lsp_server/src/world.rs
parent2e2fae32dff6cab508768953bbd34b88b5bea166 (diff)
cfg gated tests that only work on windows.
Diffstat (limited to 'crates/ra_lsp_server/src/world.rs')
-rw-r--r--crates/ra_lsp_server/src/world.rs26
1 files changed, 16 insertions, 10 deletions
diff --git a/crates/ra_lsp_server/src/world.rs b/crates/ra_lsp_server/src/world.rs
index 63a820012..8b48726ee 100644
--- a/crates/ra_lsp_server/src/world.rs
+++ b/crates/ra_lsp_server/src/world.rs
@@ -325,16 +325,22 @@ fn url_from_path_with_drive_lowercasing(path: impl AsRef<Path>) -> Result<Url> {
325 } 325 }
326} 326}
327 327
328#[test] 328// `Url` is not able to parse windows paths on unix machines.
329fn test_lowercase_drive_letter_with_drive() { 329#[cfg(target_os = "windows")]
330 let url = url_from_path_with_drive_lowercasing("C:\\Test").unwrap(); 330#[cfg(test)]
331 331mod path_conversion_windows_tests {
332 assert_eq!(url.to_string(), "file:///c:/Test"); 332 use super::url_from_path_with_drive_lowercasing;
333} 333 #[test]
334 fn test_lowercase_drive_letter_with_drive() {
335 let url = url_from_path_with_drive_lowercasing("C:\\Test").unwrap();
336
337 assert_eq!(url.to_string(), "file:///c:/Test");
338 }
334 339
335#[test] 340 #[test]
336fn test_drive_without_colon_passthrough() { 341 fn test_drive_without_colon_passthrough() {
337 let url = url_from_path_with_drive_lowercasing(r#"\\localhost\C$\my_dir"#).unwrap(); 342 let url = url_from_path_with_drive_lowercasing(r#"\\localhost\C$\my_dir"#).unwrap();
338 343
339 assert_eq!(url.to_string(), "file://localhost/C$/my_dir"); 344 assert_eq!(url.to_string(), "file://localhost/C$/my_dir");
345 }
340} 346}