mirror of
https://github.com/redmine/redmine.git
synced 2025-11-11 15:56:03 +01:00
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
This commit is contained in:
@@ -19,7 +19,6 @@ Layout/AlignArguments:
|
|||||||
- 'test/integration/api_test/memberships_test.rb'
|
- 'test/integration/api_test/memberships_test.rb'
|
||||||
- 'test/integration/api_test/projects_test.rb'
|
- 'test/integration/api_test/projects_test.rb'
|
||||||
- 'test/integration/api_test/wiki_pages_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'
|
- 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'
|
||||||
|
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
|
|||||||
@@ -25,24 +25,32 @@ class Redmine::WikiFormatting::MarkdownHtmlParserTest < ActiveSupport::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_should_convert_tags
|
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>')
|
@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')
|
@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')
|
@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')
|
@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')
|
@parser.to_text('foo<a name="Header-one"/>baz')
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_html_tables_conversion
|
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>')
|
@parser.to_text('<table><tr><th>th1</th><th>th2</th></tr><tr><td>td1</td><td>td2</td></tr></table>')
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user