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
This commit is contained in:
Toshi MARUYAMA
2020-12-19 17:32:27 +00:00
parent 2cd0507184
commit 15e78eb472

View File

@@ -101,12 +101,18 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest
def test_macro_should_receive_the_object_as_argument_when_with_object_and_attribute def test_macro_should_receive_the_object_as_argument_when_with_object_and_attribute
issue = Issue.find(1) issue = Issue.find(1)
issue.description = "{{hello_world}}" issue.description = "{{hello_world}}"
assert_equal '<p>Hello world! Object: Issue, Called with no argument and no block of text.</p>', textilizable(issue, :description) assert_equal(
'<p>Hello world! Object: Issue, Called with no argument and no block of text.</p>',
textilizable(issue, :description)
)
end end
def test_macro_should_receive_the_object_as_argument_when_called_with_object_option def test_macro_should_receive_the_object_as_argument_when_called_with_object_option
text = "{{hello_world}}" text = "{{hello_world}}"
assert_equal '<p>Hello world! Object: Issue, Called with no argument and no block of text.</p>', textilizable(text, :object => Issue.find(1)) assert_equal(
'<p>Hello world! Object: Issue, Called with no argument and no block of text.</p>',
textilizable(text, :object => Issue.find(1))
)
end end
def test_extract_macro_options_should_with_args def test_extract_macro_options_should_with_args
@@ -135,7 +141,10 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest
end end
text = "{{exception}}" text = "{{exception}}"
assert_include '<div class="flash error">Error executing the <strong>exception</strong> macro (My message)</div>', textilizable(text) assert_include(
'<div class="flash error">Error executing the <strong>exception</strong> macro (My message)</div>',
textilizable(text)
)
end end
def test_macro_arguments_should_not_be_parsed_by_formatters def test_macro_arguments_should_not_be_parsed_by_formatters
@@ -303,11 +312,11 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest
end end
def test_macro_child_pages_with_depth_option def test_macro_child_pages_with_depth_option
expected = "<p><ul class=\"pages-hierarchy\">\n" + expected =
"<li><a href=\"/projects/ecookbook/wiki/Child_1\">Child 1</a></li>\n" + "<p><ul class=\"pages-hierarchy\">\n" \
"<li><a href=\"/projects/ecookbook/wiki/Child_2\">Child 2</a></li>\n" + "<li><a href=\"/projects/ecookbook/wiki/Child_1\">Child 1</a></li>\n" \
"<li><a href=\"/projects/ecookbook/wiki/Child_2\">Child 2</a></li>\n" \
"</ul>\n</p>" "</ul>\n</p>"
@project = Project.find(1) @project = Project.find(1)
assert_equal expected, textilizable("{{child_pages(depth=1)}}", :object => WikiPage.find(2).content) assert_equal expected, textilizable("{{child_pages(depth=1)}}", :object => WikiPage.find(2).content)
end end