From 02413baabbc2d7458377822974ee3405a91fe627 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Sat, 26 Sep 2009 20:02:47 -0500 Subject: Fix skipping memcache tests if a memcache server isn't running --- actionpack/test/dispatch/session/mem_cache_store_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack/test/dispatch') 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' -- cgit v1.2.3