aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/caching_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/caching_test.rb')
-rw-r--r--activesupport/test/caching_test.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index 4e212f1661..8bb0c155cf 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -1,4 +1,5 @@
require 'abstract_unit'
+require 'active_support/cache'
class CacheKeyTest < ActiveSupport::TestCase
def test_expand_cache_key
@@ -13,12 +14,6 @@ class CacheStoreSettingTest < ActiveSupport::TestCase
assert_equal "/path/to/cache/directory", store.cache_path
end
- def test_drb_fragment_cache_store
- store = ActiveSupport::Cache.lookup_store :drb_store, "druby://localhost:9192"
- assert_kind_of(ActiveSupport::Cache::DRbStore, store)
- assert_equal "druby://localhost:9192", store.address
- end
-
def test_mem_cache_fragment_cache_store
store = ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost"
assert_kind_of(ActiveSupport::Cache::MemCacheStore, store)