diff options
author | Go MAEDA <maeda@farend.jp> | 2020-02-29 04:21:53 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-02-29 04:21:53 +0000 |
commit | 2253032ebc46837450ff8fc1c43f087627ec26b7 (patch) | |
tree | ffbc92a3338342738453bfa6c23aadd1d8acfe36 /test | |
parent | c6ed9070e7ce76250a78d97f7069aeec6fc643e9 (diff) | |
download | redmine-2253032ebc46837450ff8fc1c43f087627ec26b7.tar.gz redmine-2253032ebc46837450ff8fc1c43f087627ec26b7.zip |
Newline between list items break a list (#32971).
Patch by Yuichi HARADA.
git-svn-id: http://svn.redmine.org/redmine/trunk@19536 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index 19128524e..2358ded58 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -171,6 +171,24 @@ class Redmine::WikiFormatting::TextileFormatterTest < ActionView::TestCase </ol> EXPECTED assert_equal expected.gsub(%r{\s+}, ''), to_html(raw).gsub(%r{\s+}, '') + + raw = <<~RAW + * Item-1 + + * Item-1a + * Item-1b + RAW + expected = <<~EXPECTED + <ul> + <li>Item-1 + <ul> + <li>Item-1a</li> + <li>Item-1b</li> + </ul> + </li> + </ul> + EXPECTED + assert_equal expected.gsub(%r{\s+}, ''), to_html(raw).gsub(%r{\s+}, '') end def test_escaping |