-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into f209-newline-multiline-args
- Loading branch information
Showing
62 changed files
with
360 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
test_that("curly-culry", { | ||
expect_warning(test_collection("curly-curly", | ||
expect_no_warning(test_collection("curly-curly", | ||
"mixed", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
test_that("does apply spacing rules only if not aligned", { | ||
expect_warning(test_collection("alignment", | ||
expect_no_warning(test_collection("alignment", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
|
||
text <- "tribble(\n ~x, ~y,\n 11, list(a = 1),\n 2, list(bjj = 2)\n)" | ||
expect_warning(style_text(text), NA) | ||
expect_no_warning(style_text(text)) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
test_that("reindent function declaration", { | ||
expect_warning(test_collection("fun_dec", "fun_dec_scope_spaces", | ||
expect_no_warning(test_collection("fun_dec", "fun_dec_scope_spaces", | ||
transformer = style_text, scope = "spaces" | ||
), NA) | ||
)) | ||
|
||
expect_warning(test_collection("fun_dec", "line_break_fun_dec", | ||
expect_no_warning(test_collection("fun_dec", "line_break_fun_dec", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
test_that("edge cases work", { | ||
expect_warning(test_collection("indention_fun_calls", | ||
expect_no_warning(test_collection("indention_fun_calls", | ||
transformer = style_text, strict = FALSE | ||
), NA) | ||
)) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
test_that("multiple round brackets don't cause extraindention", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"round_only", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
|
||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"round_closing_on_same_line", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
}) | ||
|
||
|
||
test_that("multiple curly brackets don't cause extraindention", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"curly_only", | ||
transformer = style_text_without_curly_curly | ||
), NA) | ||
)) | ||
}) | ||
|
||
|
||
test_that("multiple curly and round brackets don't cause extraindention", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"curly_and_round", | ||
transformer = style_text_without_curly_curly | ||
), NA) | ||
)) | ||
}) | ||
|
||
|
||
|
||
test_that("multiple curly and round brackets overall test", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"overall", | ||
transformer = style_text | ||
), NA) | ||
)) | ||
}) | ||
|
||
test_that("if and ifelse interacting with curly braces works", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"if_else_curly", | ||
transformer = style_text, strict = FALSE | ||
), NA) | ||
)) | ||
}) | ||
|
||
test_that("edge cases work", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"edge_strict", | ||
transformer = style_text_without_curly_curly | ||
), NA) | ||
)) | ||
}) | ||
|
||
test_that("token / braces interaction works", { | ||
expect_warning(test_collection("indention_multiple", | ||
expect_no_warning(test_collection("indention_multiple", | ||
"fun_for_new_line", | ||
transformer = style_text_without_curly_curly | ||
), NA) | ||
)) | ||
}) |
Oops, something went wrong.