]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of SearchHelperTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Dec 2020 14:12:00 +0000 (14:12 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Dec 2020 14:12:00 +0000 (14:12 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20593 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/helpers/search_helper_test.rb

index 9632089ae90784b069dc2ccdd4bd462e440173ef..53e85f3e182947e640dd687a0cb3a8ae1802cae8 100644 (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