diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:53:17 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:53:17 -0700 |
commit | 595e03336f7366b5143a8af295b4e0fefbb8f294 (patch) | |
tree | 5fd1def896a16653d7ffb5ebfe64c27638fda183 /activesupport/test | |
parent | bd84b820188daed991756531071137dc7e0876a0 (diff) | |
download | rails-595e03336f7366b5143a8af295b4e0fefbb8f294.tar.gz rails-595e03336f7366b5143a8af295b4e0fefbb8f294.tar.bz2 rails-595e03336f7366b5143a8af295b4e0fefbb8f294.zip |
Remove rarely-used DRb cache store
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/caching_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb index 788326c73e..8bb0c155cf 100644 --- a/activesupport/test/caching_test.rb +++ b/activesupport/test/caching_test.rb @@ -14,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) |