From 15e78eb47276e134f2119c6c8b8b33f132c38c65 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 19 Dec 2020 17:32:27 +0000 Subject: [PATCH] shorten long line of test/unit/lib/redmine/wiki_formatting/macros_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20673 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- .../redmine/wiki_formatting/macros_test.rb | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/test/unit/lib/redmine/wiki_formatting/macros_test.rb b/test/unit/lib/redmine/wiki_formatting/macros_test.rb index 2cfa3e7a7..0e728be01 100644 --- a/test/unit/lib/redmine/wiki_formatting/macros_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/macros_test.rb @@ -101,12 +101,18 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest def test_macro_should_receive_the_object_as_argument_when_with_object_and_attribute issue = Issue.find(1) issue.description = "{{hello_world}}" - assert_equal '

Hello world! Object: Issue, Called with no argument and no block of text.

', textilizable(issue, :description) + assert_equal( + '

Hello world! Object: Issue, Called with no argument and no block of text.

', + textilizable(issue, :description) + ) end def test_macro_should_receive_the_object_as_argument_when_called_with_object_option text = "{{hello_world}}" - assert_equal '

Hello world! Object: Issue, Called with no argument and no block of text.

', textilizable(text, :object => Issue.find(1)) + assert_equal( + '

Hello world! Object: Issue, Called with no argument and no block of text.

', + textilizable(text, :object => Issue.find(1)) + ) end def test_extract_macro_options_should_with_args @@ -135,7 +141,10 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest end text = "{{exception}}" - assert_include '
Error executing the exception macro (My message)
', textilizable(text) + assert_include( + '
Error executing the exception macro (My message)
', + textilizable(text) + ) end def test_macro_arguments_should_not_be_parsed_by_formatters @@ -303,11 +312,11 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest end def test_macro_child_pages_with_depth_option - expected = "

\n

" - + expected = + "

\n

" @project = Project.find(1) assert_equal expected, textilizable("{{child_pages(depth=1)}}", :object => WikiPage.find(2).content) end -- 2.39.5