aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/test/controller/test_test.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb
index 018b342b68..56c0a90831 100644
--- a/actionpack/test/controller/test_test.rb
+++ b/actionpack/test/controller/test_test.rb
@@ -25,6 +25,10 @@ class TestTest < Test::Unit::TestCase
render :text => request.request_uri
end
+ def test_query_string
+ render :text => request.query_string
+ end
+
def test_html_output
render :text => <<HTML
<html>
@@ -143,6 +147,17 @@ XML
assert_equal "/explicit/uri", @response.body
end
+ def test_process_with_query_string
+ process :test_query_string, :q => 'test'
+ assert_equal "q=test", @response.body
+ end
+
+ def test_process_with_query_string_with_explicit_uri
+ @request.set_REQUEST_URI "/explicit/uri?q=test?extra=question"
+ process :test_query_string
+ assert_equal "q=test?extra=question", @response.body
+ end
+
def test_multiple_calls
process :test_only_one_param, :left => true
assert_equal "OK", @response.body