diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-01-26 15:43:29 -0500 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-01-26 20:16:48 -0500 |
commit | f31a386c7ecdfe8a9173655b515470a2fbc9fcdd (patch) | |
tree | 7d3e5109948ce35173c2d332615b81b30cea417f /actionview/test | |
parent | 534b12afb5cd0240128c3552394004f15b18520c (diff) | |
download | rails-f31a386c7ecdfe8a9173655b515470a2fbc9fcdd.tar.gz rails-f31a386c7ecdfe8a9173655b515470a2fbc9fcdd.tar.bz2 rails-f31a386c7ecdfe8a9173655b515470a2fbc9fcdd.zip |
Fix sanitizer tests
These tests were failing due to backwards incompatible changes, as apart
of the v1.0.3 release of rails-html-sanitizer.
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/template/text_helper_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/test/template/text_helper_test.rb b/actionview/test/template/text_helper_test.rb index fb98ac6330..03c7597505 100644 --- a/actionview/test/template/text_helper_test.rb +++ b/actionview/test/template/text_helper_test.rb @@ -43,11 +43,11 @@ class TextHelperTest < ActionView::TestCase end def test_simple_format_should_sanitize_input_when_sanitize_option_is_not_false - assert_equal "<p><b> test with unsafe string </b></p>", simple_format("<b> test with unsafe string </b><script>code!</script>") + assert_equal "<p><b> test with unsafe string </b>code!</p>", simple_format("<b> test with unsafe string </b><script>code!</script>") end def test_simple_format_should_sanitize_input_when_sanitize_option_is_true - assert_equal '<p><b> test with unsafe string </b></p>', + assert_equal '<p><b> test with unsafe string </b>code!</p>', simple_format('<b> test with unsafe string </b><script>code!</script>', {}, sanitize: true) end @@ -198,7 +198,7 @@ class TextHelperTest < ActionView::TestCase def test_highlight_should_sanitize_input assert_equal( - "This is a <mark>beautiful</mark> morning", + "This is a <mark>beautiful</mark> morningcode!", highlight("This is a beautiful morning<script>code!</script>", "beautiful") ) end |