mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 13:51:31 +00:00
Normalize tests
This commit is contained in:
parent
a40f78f92a
commit
96197e0873
1 changed files with 37 additions and 45 deletions
|
@ -209,7 +209,6 @@ mod tests {
|
||||||
fn test_completion_detail_from_macro_generated_struct_fn_doc_attr() {
|
fn test_completion_detail_from_macro_generated_struct_fn_doc_attr() {
|
||||||
check_detail_and_documentation(
|
check_detail_and_documentation(
|
||||||
r#"
|
r#"
|
||||||
//- /lib.rs
|
|
||||||
macro_rules! bar {
|
macro_rules! bar {
|
||||||
() => {
|
() => {
|
||||||
struct Bar;
|
struct Bar;
|
||||||
|
@ -235,7 +234,6 @@ mod tests {
|
||||||
fn test_completion_detail_from_macro_generated_struct_fn_doc_comment() {
|
fn test_completion_detail_from_macro_generated_struct_fn_doc_comment() {
|
||||||
check_detail_and_documentation(
|
check_detail_and_documentation(
|
||||||
r#"
|
r#"
|
||||||
//- /lib.rs
|
|
||||||
macro_rules! bar {
|
macro_rules! bar {
|
||||||
() => {
|
() => {
|
||||||
struct Bar;
|
struct Bar;
|
||||||
|
@ -260,13 +258,7 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_no_completions_required() {
|
fn test_no_completions_required() {
|
||||||
// There must be no hint for 'in' keyword.
|
// There must be no hint for 'in' keyword.
|
||||||
check_no_completion(
|
check_no_completion(r#"fn foo() { for i i$0 }"#);
|
||||||
r#"
|
|
||||||
fn foo() {
|
|
||||||
for i i$0
|
|
||||||
}
|
|
||||||
"#,
|
|
||||||
);
|
|
||||||
// After 'in' keyword hints may be spawned.
|
// After 'in' keyword hints may be spawned.
|
||||||
check_detail_and_documentation(
|
check_detail_and_documentation(
|
||||||
r#"
|
r#"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue