aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-04-24 20:24:03 -0500
committerJoshua Peek <josh@joshpeek.com>2009-04-24 20:24:54 -0500
commitdd2ed32418a74ca9126834f98a1b0bca926c0c4f (patch)
tree5a9983b3c83148fd7bac98cdaee18355cd3a37aa /actionpack/test/controller
parentcbcc0ca57b0ea713d7d32364b599d88f2bef6d92 (diff)
downloadrails-dd2ed32418a74ca9126834f98a1b0bca926c0c4f.tar.gz
rails-dd2ed32418a74ca9126834f98a1b0bca926c0c4f.tar.bz2
rails-dd2ed32418a74ca9126834f98a1b0bca926c0c4f.zip
Start to integrate some of the features in Rack::Test.
Eventually commit ActionDispatch::Test::MockRequest and ActionDispatch::Test:: UploadedFile upstream.
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/integration_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb
index e39a934c24..9eeaa7b4e1 100644
--- a/actionpack/test/controller/integration_test.rb
+++ b/actionpack/test/controller/integration_test.rb
@@ -337,7 +337,7 @@ class IntegrationProcessTest < ActionController::IntegrationTest
get '/get_with_params?foo=bar'
assert_equal '/get_with_params?foo=bar', request.env["REQUEST_URI"]
assert_equal '/get_with_params?foo=bar', request.request_uri
- assert_equal "", request.env["QUERY_STRING"]
+ assert_equal "foo=bar", request.env["QUERY_STRING"]
assert_equal 'foo=bar', request.query_string
assert_equal 'bar', request.parameters['foo']