aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorRyan Angilly <ryan@angilly.com>2009-03-24 10:51:45 -0500
committerJoshua Peek <josh@joshpeek.com>2009-03-24 10:54:19 -0500
commitdd2eb1ea7c34eb6496feaf7e42100f37a8dae76b (patch)
tree28e0396a20d83caaad0f6a73fb4439637bbe5534 /actionpack/test/controller
parentae9f258e03c9fd5088da12c1c6cd216cc89a01f7 (diff)
downloadrails-dd2eb1ea7c34eb6496feaf7e42100f37a8dae76b.tar.gz
rails-dd2eb1ea7c34eb6496feaf7e42100f37a8dae76b.tar.bz2
rails-dd2eb1ea7c34eb6496feaf7e42100f37a8dae76b.zip
adding session_options initialization and test [#2303 state:resolved]
Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/test_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb
index 3924b282d4..6bf8a10f59 100644
--- a/actionpack/test/controller/test_test.rb
+++ b/actionpack/test/controller/test_test.rb
@@ -130,6 +130,10 @@ XML
ActionController::Routing::Routes.reload
end
+ def test_test_request_has_session_options_initialized
+ assert @request.session_options
+ end
+
def test_raw_post_handling
params = {:page => {:name => 'page name'}, 'some key' => 123}
post :render_raw_post, params.dup