diff --git a/actionpack/test/dispatch/session/mem_cache_store_test.rb b/actionpack/test/dispatch/session/mem_cache_store_test.rb index d7129da187..4c6a80fdb8 100644 --- a/actionpack/test/dispatch/session/mem_cache_store_test.rb +++ b/actionpack/test/dispatch/session/mem_cache_store_test.rb @@ -32,6 +32,10 @@ class MemCacheStoreTest < ActionController::IntegrationTest end begin + require 'memcache' + memcache = MemCache.new('localhost:11211') + memcache.set('ping', '') + def test_setting_and_getting_session_value with_test_route_set do get '/set_session_value'