From 3a5c47f6e93b3a4bcccd34adcf7efe22c6a23929 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 24 Nov 2019 12:58:26 +0000 Subject: [PATCH] cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19251 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- .rubocop_todo.yml | 1 - .../markdown_html_parser_test.rb | 28 ++++++++++++------- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index aa3e90f54..bf67f51db 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -19,7 +19,6 @@ Layout/AlignArguments: - 'test/integration/api_test/memberships_test.rb' - 'test/integration/api_test/projects_test.rb' - 'test/integration/api_test/wiki_pages_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb' - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb' # Cop supports --auto-correct. diff --git a/test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb b/test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb index 07c9658b4..c8a3a4e43 100644 --- a/test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb @@ -25,24 +25,32 @@ class Redmine::WikiFormatting::MarkdownHtmlParserTest < ActiveSupport::TestCase end def test_should_convert_tags - assert_equal 'A **simple** html snippet.', + assert_equal( + 'A **simple** html snippet.', @parser.to_text('

A simple html snippet.

') - - assert_equal 'foo [bar](http://example.com/) baz', + ) + assert_equal( + 'foo [bar](http://example.com/) baz', @parser.to_text('foobarbaz') - - assert_equal 'foo http://example.com/ baz', + ) + assert_equal( + 'foo http://example.com/ baz', @parser.to_text('foobaz') - - assert_equal 'foobarbaz', + ) + assert_equal( + 'foobarbaz', @parser.to_text('foobarbaz') - - assert_equal 'foobaz', + ) + assert_equal( + 'foobaz', @parser.to_text('foobaz') + ) 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('
th1th2
td1td2
') + ) end end -- 2.39.5