Fixes html escaping.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1901 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2008-09-23 17:03:51 +00:00
parent 9131cdf6b9
commit 2e7e26fbb4
2 changed files with 4 additions and 3 deletions
@@ -190,6 +190,7 @@ class ApplicationHelperTest < HelperTestCase
to_test = {
"<pre>preformatted text</pre>" => "<pre>preformatted text</pre>",
"<notextile>no *textile* formatting</notextile>" => "no *textile* formatting",
"<notextile>this is <tag>a tag</tag></notextile>" => "this is &lt;tag&gt;a tag&lt;/tag&gt;"
}
to_test.each { |text, result| assert_equal result, textilizable(text) }
end