summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2018-05-02 02:30:36 +0000
committerGo MAEDA <maeda@farend.jp>2018-05-02 02:30:36 +0000
commitffd9a007565999e33809fc7f876c90abe18fe2f5 (patch)
tree1fbbb4824221f7bc34254c478cc6f628cbde28d3 /test
parent32e9ec868d618c0a54ada830d0ec69ef2d54b0a4 (diff)
downloadredmine-ffd9a007565999e33809fc7f876c90abe18fe2f5.tar.gz
redmine-ffd9a007565999e33809fc7f876c90abe18fe2f5.zip
Merged r17322 from trunk to 3.3-stable (#28469).
git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@17324 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb3
1 files changed, 3 insertions, 0 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 7e5ef8cb2..8920a6ae9 100644
--- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
+++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
@@ -542,7 +542,10 @@ STR
end
def test_should_allow_valid_language_class_attribute_on_code_tags
+ # language name is double-quoted
assert_html_output({"<code class=\"ruby\">test</code>" => "<code class=\"ruby syntaxhl\"><span class=\"CodeRay\">test</span></code>"}, false)
+ # language name is single-quoted
+ assert_html_output({"<code class='ruby'>test</code>" => "<code class=\"ruby syntaxhl\"><span class=\"CodeRay\">test</span></code>"}, false)
end
def test_should_not_allow_valid_language_class_attribute_on_non_code_offtags