1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-05 07:01:30 +00:00

shorten long line of SearchHelperTest

git-svn-id: http://svn.redmine.org/redmine/trunk@20593 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-12-09 14:12:00 +00:00
parent 4273e9decf
commit d02eed94d9

View File

@ -29,8 +29,12 @@ class SearchHelperTest < Redmine::HelperTest
end
def test_highlight_multiple_tokens
assert_equal 'This is a <span class="highlight token-0">token</span> and <span class="highlight token-1">another</span> <span class="highlight token-0">token</span>.',
highlight_tokens('This is a token and another token.', %w(token another))
assert_equal(
'This is a <span class="highlight token-0">token</span> and ' \
'<span class="highlight token-1">another</span> ' \
'<span class="highlight token-0">token</span>.',
highlight_tokens('This is a token and another token.', %w(token another))
)
end
def test_highlight_should_not_exceed_maximum_length
@ -43,6 +47,11 @@ class SearchHelperTest < Redmine::HelperTest
def test_highlight_multibyte
s = ('й' * 200) + ' token ' + ('й' * 200)
r = highlight_tokens(s, %w(token))
assert_equal ('й' * 45) + ' ... ' + ('й' * 44) + ' <span class="highlight token-0">token</span> ' + ('й' * 44) + ' ... ' + ('й' * 45), r
assert_equal(
('й' * 45) + ' ... ' + ('й' * 44) +
' <span class="highlight token-0">token</span> ' +
('й' * 44) + ' ... ' + ('й' * 45),
r
)
end
end