From d688215f25b8da06b825da5942763c0faf2f7454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Galil=C3=A9e=20=27Bill=27=20Enguehard?= Date: Fri, 22 May 2020 20:11:24 +0200 Subject: Update tests to accept new hover formatting --- crates/ra_ide/src/hover.rs | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs index befa977c7..1f4f6b848 100644 --- a/crates/ra_ide/src/hover.rs +++ b/crates/ra_ide/src/hover.rs @@ -405,7 +405,7 @@ mod tests { }; } "#, - &["Foo\nfield_a: u32"], + &["Foo\n___\n\n```rust\nfield_a: u32"], ); // Hovering over the field in the definition @@ -422,7 +422,7 @@ mod tests { }; } "#, - &["Foo\nfield_a: u32"], + &["Foo\n___\n\n```rust\nfield_a: u32"], ); } @@ -475,7 +475,7 @@ fn main() { ", ); let hover = analysis.hover(position).unwrap().unwrap(); - assert_eq!(trim_markup_opt(hover.info.first()), Some("Option\nSome")); + assert_eq!(trim_markup_opt(hover.info.first()), Some("Option\n___\n\n```rust\nSome")); let (analysis, position) = single_file_with_position( " @@ -503,6 +503,9 @@ fn main() { "#, &[" Option +___ + +```rust None ``` @@ -524,6 +527,9 @@ The None variant "#, &[" Option +___ + +```rust Some ``` @@ -606,7 +612,10 @@ fn func(foo: i32) { if true { <|>foo; }; } ", ); let hover = analysis.hover(position).unwrap().unwrap(); - assert_eq!(trim_markup_opt(hover.info.first()), Some("wrapper::Thing\nfn new() -> Thing")); + assert_eq!( + trim_markup_opt(hover.info.first()), + Some("wrapper::Thing\n___\n\n```rust\nfn new() -> Thing") + ); } #[test] -- cgit v1.2.3