Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17603
e93f8b46-1217-0410-a6f0-
8f06a7374b81
def flush_left( text )
indt = 0
if text =~ /^ /
- while text !~ /^ {#{indt}}\S/
+ while text !~ /^ {#{indt}}[^ ]/
indt += 1
end unless text.empty?
if indt.nonzero?
assert_equal expected.gsub(%r{[\r\n\t]}, ''), to_html(text).gsub(%r{[\r\n\t]}, '')
end
+ # TODO: Remove this test after migrating to RedCloth 4
+ def test_should_not_crash_with_special_input
+ assert_nothing_raised { to_html(" \f") }
+ assert_nothing_raised { to_html(" \v") }
+ end
+
private
def assert_html_output(to_test, expect_paragraph = true)