aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-06 18:09:07 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-06 18:26:20 -0500
commitf6f406696f01f000f1b873780648222fefe8bfce (patch)
tree2bebf46dacc41b03722cbd344516b3c7cdbe2e1f /actionpack
parent032da37019cd46d6866304ea09aadb7ad6fadd43 (diff)
downloadrails-f6f406696f01f000f1b873780648222fefe8bfce.tar.gz
rails-f6f406696f01f000f1b873780648222fefe8bfce.tar.bz2
rails-f6f406696f01f000f1b873780648222fefe8bfce.zip
Dalli doesn't support autoloading of unloaded classes
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/dispatch/session/mem_cache_store_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/actionpack/test/dispatch/session/mem_cache_store_test.rb b/actionpack/test/dispatch/session/mem_cache_store_test.rb
index 7e9e41c29a..e53ce4195b 100644
--- a/actionpack/test/dispatch/session/mem_cache_store_test.rb
+++ b/actionpack/test/dispatch/session/mem_cache_store_test.rb
@@ -131,11 +131,6 @@ class MemCacheStoreTest < ActionDispatch::IntegrationTest
get '/get_session_id'
assert_response :success
end
- with_autoload_path "session_autoload_test" do
- get '/get_session_value'
- assert_response :success
- assert_equal 'foo: #<SessionAutoloadTest::Foo bar:"baz">', response.body, "should auto-load unloaded class"
- end
end
end