require File.dirname(__FILE__) + '/helper' class TestRedCloth < Test::Unit::TestCase context "RedCloth with hard_breaks enabled" do setup do config = { 'redcloth' => { 'hard_breaks' => true # default } } @textile = TextileConverter.new config end should "preserve single line breaks in HTML output" do assert_equal "
line1
\nline2
line1\nline2
", @textile.convert("p. line1\nline2").strip end end end