Browse Source

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
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
70284ee244
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb

+ 5
- 5
test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb View File

@@ -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 '<p>This <u>text</u> should be underlined</p>', @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 '<p>This <u>text</u> should be underlined</p>', @formatter.new(text).to_html.strip
end
end
end

Loading…
Cancel
Save