diff --git a/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb index cf06c7cde..465bb4711 100644 --- a/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb @@ -168,6 +168,11 @@ Nulla nunc nisi, egestas in ornare vel, posuere ac libero."] @formatter.new(text).update_section(3, replacement) end + def test_should_support_underlined_text + text = 'This _text_ should be underlined' + assert_equal '

This text should be underlined

', @formatter.new(text).to_html.strip + end + private def assert_section_with_hash(expected, text, index) @@ -178,10 +183,5 @@ Nulla nunc nisi, egestas in ornare vel, posuere ac libero."] assert_equal expected, result.first, "section content did not match" assert_equal Digest::MD5.hexdigest(expected), result.last, "section hash did not match" end - - def test_should_support_underlined_text - text = 'This _text_ should be underlined' - assert_equal '

This text should be underlined

', @formatter.new(text).to_html.strip - end end end