diff options
-rw-r--r-- | test/unit/helpers/application_helper_test.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 9559b76cc..eea4a83f8 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -214,14 +214,14 @@ h1. Another title RAW - expected = '<div class="toc">' + - '<a href="#1" class="heading1">Title</a>' + - '<a href="#2" class="heading2">Subtitle</a>' + - '<a href="#3" class="heading2">Subtitle with red text</a>' + - '<a href="#4" class="heading1">Another title</a>' + - '</div>' + expected = '<ul class="toc">' + + '<li class="heading1"><a href="#1">Title</a></li>' + + '<li class="heading2"><a href="#2">Subtitle</a></li>' + + '<li class="heading2"><a href="#3">Subtitle with red text</a></li>' + + '<li class="heading1"><a href="#4">Another title</a></li>' + + '</ul>' - assert textilizable(raw).include?(expected) + assert textilizable(raw).gsub("\n", "").include?(expected) end def test_blockquote |