summaryrefslogtreecommitdiffstats
path: root/test/unit/lib
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-03-10 23:37:57 +0000
committerGo MAEDA <maeda@farend.jp>2019-03-10 23:37:57 +0000
commit019b640d81c9578533efe75f9759b7c78d4154ae (patch)
tree3590205d49188b370a690cfe1f33d9ef009bfb10 /test/unit/lib
parent24c30add5c07be8eba7178e898390a8aecc796d3 (diff)
downloadredmine-019b640d81c9578533efe75f9759b7c78d4154ae.tar.gz
redmine-019b640d81c9578533efe75f9759b7c78d4154ae.zip
Reverts r17891 (#30099).
git-svn-id: http://svn.redmine.org/redmine/trunk@17939 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/lib')
-rw-r--r--test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
index f8c7d520a..4bbef9996 100644
--- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
+++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
@@ -621,18 +621,6 @@ EXPECTED
assert_equal expected.gsub(%r{[\r\n\t]}, ''), to_html(text).gsub(%r{[\r\n\t]}, '')
end
- def test_should_preserve_multiple_blank_lines_in_pre_tags
- text = <<-STR
-<pre>
- This is some text in pre
-
-
- Two blank lines avobe
-</pre>
-STR
- assert_equal text.chomp, to_html(text)
- end
-
private
def assert_html_output(to_test, expect_paragraph = true)