diff options
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/text_helper_test.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb index 37eff78e76..49f5160711 100644 --- a/actionpack/test/template/text_helper_test.rb +++ b/actionpack/test/template/text_helper_test.rb @@ -204,7 +204,7 @@ class TextHelperTest < Test::Unit::TestCase def test_sanitize_form raw = "<form action=\"/foo/bar\" method=\"post\"><input></form>" result = sanitize(raw) - assert_equal "<form action='/foo/bar' method='post'><input></form>", result + assert_equal %(<form action="/foo/bar" method="post"><input></form>), result end def test_sanitize_plaintext @@ -216,25 +216,25 @@ class TextHelperTest < Test::Unit::TestCase def test_sanitize_script raw = "<script language=\"Javascript\">blah blah blah</script>" result = sanitize(raw) - assert_equal "<script language='Javascript'>blah blah blah</script>", result + assert_equal %{<script language="Javascript">blah blah blah</script>}, result end def test_sanitize_js_handlers raw = %{onthis="do that" <a href="#" onclick="hello" name="foo" onbogus="remove me">hello</a>} result = sanitize(raw) - assert_equal %{onthis="do that" <a name='foo' href='#'>hello</a>}, result + assert_equal %{onthis="do that" <a name="foo" href="#">hello</a>}, result end def test_sanitize_javascript_href raw = %{href="javascript:bang" <a href="javascript:bang" name="hello">foo</a>, <span href="javascript:bang">bar</span>} result = sanitize(raw) - assert_equal %{href="javascript:bang" <a name='hello'>foo</a>, <span>bar</span>}, result + assert_equal %{href="javascript:bang" <a name="hello">foo</a>, <span>bar</span>}, result end def test_sanitize_image_src raw = %{src="javascript:bang" <img src="javascript:bang" width="5">foo</img>, <span src="javascript:bang">bar</span>} result = sanitize(raw) - assert_equal %{src="javascript:bang" <img width='5'>foo</img>, <span>bar</span>}, result + assert_equal %{src="javascript:bang" <img width="5">foo</img>, <span>bar</span>}, result end def test_cycle_class |