mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/wiki_formatting/html_parser_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19187 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
dd6adffa8b
commit
c37ad515f8
@ -21,7 +21,6 @@ Layout/AlignArguments:
|
|||||||
- 'test/integration/api_test/wiki_pages_test.rb'
|
- 'test/integration/api_test/wiki_pages_test.rb'
|
||||||
- 'test/test_helper.rb'
|
- 'test/test_helper.rb'
|
||||||
- 'test/unit/changeset_test.rb'
|
- 'test/unit/changeset_test.rb'
|
||||||
- 'test/unit/lib/redmine/wiki_formatting/html_parser_test.rb'
|
|
||||||
- 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb'
|
- '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/markdown_html_parser_test.rb'
|
||||||
- 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'
|
- 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'
|
||||||
|
|||||||
@ -25,13 +25,17 @@ class Redmine::WikiFormatting::HtmlParserTest < ActiveSupport::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_convert_line_breaks
|
def test_convert_line_breaks
|
||||||
assert_equal "A html snippet with\na new line.",
|
assert_equal(
|
||||||
|
"A html snippet with\na new line.",
|
||||||
@parser.to_text('<p>A html snippet with<br>a new line.</p>')
|
@parser.to_text('<p>A html snippet with<br>a new line.</p>')
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_should_remove_style_tags_from_body
|
def test_should_remove_style_tags_from_body
|
||||||
assert_equal "Text",
|
assert_equal(
|
||||||
|
"Text",
|
||||||
@parser.to_text('<html><body><style>body {font-size: 0.8em;}</style>Text</body></html>')
|
@parser.to_text('<html><body><style>body {font-size: 0.8em;}</style>Text</body></html>')
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_should_remove_preceding_whitespaces
|
def test_should_remove_preceding_whitespaces
|
||||||
@ -59,8 +63,9 @@ class Redmine::WikiFormatting::HtmlParserTest < ActiveSupport::TestCase
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
HTML
|
HTML
|
||||||
|
assert_equal(
|
||||||
assert_equal "th1\n\nth2\n\ntd1\n\ntd2",
|
"th1\n\nth2\n\ntd1\n\ntd2",
|
||||||
@parser.to_text(str)
|
@parser.to_text(str)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user