aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-05-19 19:51:38 -0400
committerJeremy Kemper <jeremy@bitsweat.net>2009-05-19 16:58:04 -0700
commit36058f45040b5559fd8f6a44a17ead27a6b3d2f7 (patch)
treeeb931d92074b7bb792330431db81114409a5d1de /activesupport/test
parentd8fffe7b23acce42bc3941d7bba47e07a66aed67 (diff)
downloadrails-36058f45040b5559fd8f6a44a17ead27a6b3d2f7.tar.gz
rails-36058f45040b5559fd8f6a44a17ead27a6b3d2f7.tar.bz2
rails-36058f45040b5559fd8f6a44a17ead27a6b3d2f7.zip
Use duck typing to also allow MemCache-like object when initializing a MemCacheStore
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/caching_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index ad19dcfd09..bd237a5c8e 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -27,6 +27,12 @@ class CacheStoreSettingTest < ActiveSupport::TestCase
assert_kind_of(ActiveSupport::Cache::MemCacheStore, store)
end
+ def test_mem_cache_fragment_cache_store_with_given_mem_cache_like_object
+ MemCache.expects(:new).never
+ store = ActiveSupport::Cache.lookup_store :mem_cache_store, stub("memcache", :get => true)
+ assert_kind_of(ActiveSupport::Cache::MemCacheStore, store)
+ end
+
def test_mem_cache_fragment_cache_store_with_multiple_servers
MemCache.expects(:new).with(%w[localhost 192.168.1.1], {})
store = ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost", '192.168.1.1'