mirror of
https://github.com/redmine/redmine.git
synced 2026-03-06 12:31:40 +01:00
cleanup: rubocop: fix Layout/ClosingHeredocIndentation in TextileFormatterTest#test_get_section_should_support_lines_with_spaces_before_heading
git-svn-id: http://svn.redmine.org/redmine/trunk@19161 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -516,24 +516,23 @@ EXPECTED
|
||||
|
||||
def test_get_section_should_support_lines_with_spaces_before_heading
|
||||
# the lines after Content 2 and Heading 4 contain a space
|
||||
text = <<-STR
|
||||
h1. Heading 1
|
||||
text = <<~STR
|
||||
h1. Heading 1
|
||||
|
||||
Content 1
|
||||
Content 1
|
||||
|
||||
h1. Heading 2
|
||||
h1. Heading 2
|
||||
|
||||
Content 2
|
||||
Content 2
|
||||
|
||||
h1. Heading 3
|
||||
h1. Heading 3
|
||||
|
||||
Content 3
|
||||
Content 3
|
||||
|
||||
h1. Heading 4
|
||||
|
||||
Content 4
|
||||
STR
|
||||
h1. Heading 4
|
||||
|
||||
Content 4
|
||||
STR
|
||||
[1, 2, 3, 4].each do |index|
|
||||
assert_match /\Ah1. Heading #{index}.+Content #{index}/m, @formatter.new(text).get_section(index).first
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user