diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 15:55:09 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 15:55:09 -0700 |
commit | 0e558f0bbdbfecf9ebc5218a78ba224a295c432d (patch) | |
tree | 47283e6c18d8519be001156000848140b1b76f25 /actionpack | |
parent | 5314abed182450dbdcc25ebe601a2bbdf4cb926f (diff) | |
download | rails-0e558f0bbdbfecf9ebc5218a78ba224a295c432d.tar.gz rails-0e558f0bbdbfecf9ebc5218a78ba224a295c432d.tar.bz2 rails-0e558f0bbdbfecf9ebc5218a78ba224a295c432d.zip |
Get the AR integration tests to pass
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index a785722d4f..a7957ed944 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -54,9 +54,10 @@ end module ActionController Base.session = { - :key => '_testing_session', - :secret => '8273f16463985e2b3747dc25e30f2528' -} + :key => '_testing_session', + :secret => '8273f16463985e2b3747dc25e30f2528' + } + Base.session_store = nil class ActionControllerError < StandardError #:nodoc: end |