Browse Source

Fixes tests (r1693).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1700 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.8.0-RC1
Jean-Philippe Lang 16 years ago
parent
commit
1721376542
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      test/unit/helpers/application_helper_test.rb

+ 7
- 7
test/unit/helpers/application_helper_test.rb View File

@@ -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

Loading…
Cancel
Save