diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-04-06 16:37:55 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-04-06 16:37:55 -0300 |
commit | 0e4748cd415660eb91e63d50aa15cdd027c612dd (patch) | |
tree | 8e7106db762d8150f4e6c56289be99ccc5302b81 /actionpack/lib/action_dispatch/testing | |
parent | 0c5aded0922f80bd1a31c7d2a3974469a18160a8 (diff) | |
download | rails-0e4748cd415660eb91e63d50aa15cdd027c612dd.tar.gz rails-0e4748cd415660eb91e63d50aa15cdd027c612dd.tar.bz2 rails-0e4748cd415660eb91e63d50aa15cdd027c612dd.zip |
Make process reuse the env var passed as argument
Diffstat (limited to 'actionpack/lib/action_dispatch/testing')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/integration.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index 4706112a06..9b2f534457 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -243,7 +243,8 @@ module ActionDispatch end # Performs the actual request. - def process(method, path, parameters = nil, rack_environment = nil) + def process(method, path, parameters = nil, env = nil) + env ||= {} if path =~ %r{://} location = URI.parse(path) https! URI::HTTPS === location if location.scheme @@ -259,7 +260,7 @@ module ActionDispatch hostname, port = host.split(':') - env = { + default_env = { :method => method, :params => parameters, @@ -277,9 +278,7 @@ module ActionDispatch session = Rack::Test::Session.new(_mock_session) - (rack_environment || {}).each do |key, value| - env[key] = value - end + env.reverse_merge!(default_env) # NOTE: rack-test v0.5 doesn't build a default uri correctly # Make sure requested path is always a full uri |