diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 4835b340a..4610bee3c 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -279,6 +279,9 @@ RAW "
some text" => "
some text", '
some text' => '
some text', "
some text" => "
some text", + # xss + '
text
' => 'text
',
+ 'text' => '
text', } to_test.each { |text, result| assert_equal result, textilizable(text) } end