From 70284ee244b16f0d758d2837d7f820d540972558 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Wed, 21 Aug 2019 00:31:54 +0000 Subject: [PATCH] MarkdownFormatterTest#test_should_support_underlined_text is declared as private (#31929). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18381 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- .../redmine/wiki_formatting/markdown_formatter_test.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -- 2.39.5