From 1e087fd3fd0d6c0b839ab6c15982a996a5d4d531 Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Wed, 2 Apr 2008 12:48:59 +0000 Subject: Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9212 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/prototype_helper_test.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actionpack/test/template/prototype_helper_test.rb') diff --git a/actionpack/test/template/prototype_helper_test.rb b/actionpack/test/template/prototype_helper_test.rb index 47173a0cb1..28e58b0a08 100644 --- a/actionpack/test/template/prototype_helper_test.rb +++ b/actionpack/test/template/prototype_helper_test.rb @@ -358,6 +358,8 @@ class JavaScriptGeneratorTest < Test::Unit::TestCase def test_redirect_to assert_equal 'window.location.href = "http://www.example.com/welcome";', @generator.redirect_to(:action => 'welcome') + assert_equal 'window.location.href = "http://www.example.com/welcome?a=b&c=d";', + @generator.redirect_to("http://www.example.com/welcome?a=b&c=d") end def test_delay -- cgit v1.2.3