From df7ca38d7dc2419a564c223071b92c5570cf7a58 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Tue, 27 Feb 2007 06:36:25 +0000 Subject: session_enabled? works with session :off. Closes #6680. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6253 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/session_management_test.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/controller/session_management_test.rb b/actionpack/test/controller/session_management_test.rb index 6e100c0c37..63917565ef 100644 --- a/actionpack/test/controller/session_management_test.rb +++ b/actionpack/test/controller/session_management_test.rb @@ -142,4 +142,15 @@ class SessionManagementTest < Test::Unit::TestCase get :tell assert_equal "does not have cached associations", @response.body end + + def test_session_is_enabled + @controller = TestController.new + get :show + assert_nothing_raised do + assert_equal false, @controller.session_enabled? + end + + get :tell + assert @controller.session_enabled? + end end -- cgit v1.2.3