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/test/controller | |
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/test/controller')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index f0d62b0b13..01dc2f2091 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -521,4 +521,12 @@ class ApplicationIntegrationTest < ActionDispatch::IntegrationTest get '/foo' assert_raise(NameError) { missing_path } end + + test "process reuse the env we pass as argument" do + env = { :SERVER_NAME => 'server', 'action_dispatch.custom' => 'custom' } + get '/foo', nil, env + assert_equal :get, env[:method] + assert_equal 'server', env[:SERVER_NAME] + assert_equal 'custom', env['action_dispatch.custom'] + end end |