test/test_structure.rb in ClothRed-0.3.0 vs test/test_structure.rb in ClothRed-0.3.1
- old
+ new
@@ -15,10 +15,11 @@
class TestClothRedStructures < Test::Unit::TestCase
STRUCTURE_TEST = [
["<blockquote>blockquote</blockquote>","bq. blockquote"],
- ["<p>paragraph</p><p>another paragraph</p>", "paragraph\n\nanother paragraph\n\n"]
+ ["<p>paragraph</p><p>another paragraph</p>", "paragraph\n\nanother paragraph\n\n"],
+ ["HTML page break<br>", "HTML page break\n"], ["XHTML page break<br />", "XHTML page break\n"]
]
def test_structures
STRUCTURE_TEST.each do |html, textile|