Skip to content

Commit

Permalink
shorten long line of ApplicationHelperTest
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.redmine.org/redmine/trunk@20526 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
Toshi MARUYAMA committed Nov 30, 2020
1 parent cb7d012 commit 8f542b2
Showing 1 changed file with 22 additions and 10 deletions.
32 changes: 22 additions & 10 deletions test/helpers/application_helper_test.rb
Expand Up @@ -1523,18 +1523,30 @@ def test_section_edit_links
).delete("\n")
# heading that contains inline code
assert_match(
Regexp.new('<div class="contextual heading-2" title="Edit this section" id="section-4">' +
'<a class="icon-only icon-edit" href="/projects/1/wiki/Test/edit\?section=4">Edit this section</a></div>' +
'<a name="Subtitle-with-inline-code"></a>' +
'<h2 >Subtitle with <code>inline code</code><a href="#Subtitle-with-inline-code" class="wiki-anchor">&para;</a></h2>'),
result)
Regexp.new(
'<div class="contextual heading-2" title="Edit this section" id="section-4">' \
'<a class="icon-only icon-edit" href="/projects/1/wiki/Test/edit\?section=4">' \
'Edit this section' \
'</a></div>' \
'<a name="Subtitle-with-inline-code"></a>' \
'<h2 >Subtitle with ' \
'<code>inline code</code><a href="#Subtitle-with-inline-code" class="wiki-anchor">&para;</a>' \
'</h2>'
),
result
)
# last heading
assert_match(
Regexp.new('<div class="contextual heading-2" title="Edit this section" id="section-5">' +
'<a class="icon-only icon-edit" href="/projects/1/wiki/Test/edit\?section=5">Edit this section</a></div>' +
'<a name="Subtitle-after-pre-tag"></a>' +
'<h2 >Subtitle after pre tag<a href="#Subtitle-after-pre-tag" class="wiki-anchor">&para;</a></h2>'),
result)
Regexp.new(
'<div class="contextual heading-2" title="Edit this section" id="section-5">' \
'<a class="icon-only icon-edit" href="/projects/1/wiki/Test/edit\?section=5">' \
'Edit this section' \
'</a></div>' \
'<a name="Subtitle-after-pre-tag"></a>' \
'<h2 >Subtitle after pre tag<a href="#Subtitle-after-pre-tag" class="wiki-anchor">&para;</a></h2>'
),
result
)
end

def test_default_formatter
Expand Down

0 comments on commit 8f542b2

Please sign in to comment.