aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/session
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-26 13:41:32 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-26 13:41:32 -0500
commit1f7270057596592946a877cd029d95760ba3e5ee (patch)
treee891a72411b14502145073dda08ae8105e794295 /actionpack/test/dispatch/session
parent71b33ec482404f6e48c651eb868243ed0b6c4175 (diff)
downloadrails-1f7270057596592946a877cd029d95760ba3e5ee.tar.gz
rails-1f7270057596592946a877cd029d95760ba3e5ee.tar.bz2
rails-1f7270057596592946a877cd029d95760ba3e5ee.zip
Move default middleware stack into initializer
Diffstat (limited to 'actionpack/test/dispatch/session')
-rw-r--r--actionpack/test/dispatch/session/cookie_store_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/test/dispatch/session/cookie_store_test.rb b/actionpack/test/dispatch/session/cookie_store_test.rb
index 366a14168b..bc0b4b22a5 100644
--- a/actionpack/test/dispatch/session/cookie_store_test.rb
+++ b/actionpack/test/dispatch/session/cookie_store_test.rb
@@ -5,9 +5,6 @@ class CookieStoreTest < ActionController::IntegrationTest
SessionKey = '_myapp_session'
SessionSecret = 'b3c631c314c0bbca50c1b2843150fe33'
- # Make sure Session middleware doesnt get included in the middleware stack
- ActionController::Base.session_store = nil
-
Verifier = ActiveSupport::MessageVerifier.new(SessionSecret, 'SHA1')
SignedBar = Verifier.generate(:foo => "bar", :session_id => ActiveSupport::SecureRandom.hex(16))