aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-08-27 09:46:35 +0530
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-06 17:36:50 -0500
commitdd6206999172ebc4418c1b7c62862492ce77016c (patch)
tree9ea8f3ed5b39ea4d9720b7bfc29420952e3d08ff /actionpack
parent817a20b1cd6afb67f8b8774800640f5308bb64de (diff)
downloadrails-dd6206999172ebc4418c1b7c62862492ce77016c.tar.gz
rails-dd6206999172ebc4418c1b7c62862492ce77016c.tar.bz2
rails-dd6206999172ebc4418c1b7c62862492ce77016c.zip
Let's run action pack tests with Dalli
There is no memcache gem left in repo.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/dispatch/session/mem_cache_store_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/test/dispatch/session/mem_cache_store_test.rb b/actionpack/test/dispatch/session/mem_cache_store_test.rb
index 03234612ab..7e9e41c29a 100644
--- a/actionpack/test/dispatch/session/mem_cache_store_test.rb
+++ b/actionpack/test/dispatch/session/mem_cache_store_test.rb
@@ -34,9 +34,9 @@ class MemCacheStoreTest < ActionDispatch::IntegrationTest
end
begin
- require 'memcache'
- memcache = MemCache.new('localhost:11211')
- memcache.set('ping', '')
+ require 'dalli'
+ ss = Dalli::Client.new('localhost:11211').stats
+ raise Dalli::DalliError unless ss['localhost:11211']
def test_setting_and_getting_session_value
with_test_route_set do
@@ -165,7 +165,7 @@ class MemCacheStoreTest < ActionDispatch::IntegrationTest
assert_not_equal session_id, cookies['_session_id']
end
end
- rescue LoadError, RuntimeError
+ rescue LoadError, RuntimeError, Dalli::DalliError
$stderr.puts "Skipping MemCacheStoreTest tests. Start memcached and try again."
end