]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/wiki_formatting...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 14:26:37 +0000 (14:26 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 14:26:37 +0000 (14:26 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19196 e93f8b46-1217-0410-a6f0-8f06a7374b81

.rubocop_todo.yml
test/unit/lib/redmine/wiki_formatting/textile_html_parser_test.rb

index c5e6ad75043f1bb46810cd3ca0e75e373da6cbea..1252e78fbdba6f6b0b3df0f1f4494b2905adbb94 100644 (file)
@@ -24,7 +24,6 @@ Layout/AlignArguments:
     - 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb'
     - 'test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb'
     - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'
-    - 'test/unit/lib/redmine/wiki_formatting/textile_html_parser_test.rb'
 
 # Cop supports --auto-correct.
 # Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
index f8ff6d75c4c50fa26138e784b4f335317a6e058e..6a4ae5adb1513540b4ce04eef81c260a3b1ffacb 100644 (file)
@@ -25,24 +25,32 @@ class Redmine::WikiFormatting::TextileHtmlParserTest < ActiveSupport::TestCase
   end
 
   def test_should_convert_tags
-    assert_equal 'A *simple* html snippet.',
+    assert_equal(
+      'A *simple* html snippet.',
       @parser.to_text('<p>A <b>simple</b> html snippet.</p>')
-
-    assert_equal 'foo "bar":http://example.com/ baz',
+    )
+    assert_equal(
+      'foo "bar":http://example.com/ baz',
       @parser.to_text('foo<a href="http://example.com/">bar</a>baz')
-
-    assert_equal 'foo http://example.com/ baz',
+    )
+    assert_equal(
+      'foo http://example.com/ baz',
       @parser.to_text('foo<a href="http://example.com/"></a>baz')
-
-    assert_equal 'foobarbaz',
+    )
+    assert_equal(
+      'foobarbaz',
       @parser.to_text('foo<a name="Header-one">bar</a>baz')
-
-    assert_equal 'foobaz',
+    )
+    assert_equal(
+      'foobaz',
       @parser.to_text('foo<a name="Header-one"/>baz')
+    )
   end
 
   def test_html_tables_conversion
-    assert_equal "*th1*\n*th2*\n\ntd1\ntd2",
+    assert_equal(
+      "*th1*\n*th2*\n\ntd1\ntd2",
       @parser.to_text('<table><tr><th>th1</th><th>th2</th></tr><tr><td>td1</td><td>td2</td></tr></table>')
+    )
   end
 end