aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2014-01-03 16:39:50 -0500
committerArthur Neves <arthurnn@gmail.com>2014-01-03 16:39:50 -0500
commite7f56a7fe8fbb10e62a18b836c27aa1a0f7c5464 (patch)
treef48c4a899b1b669cfafd89ef3c2588f0a6b543f0 /activesupport/test
parent98458eea425d15ebadf366d8b55fc89c1913d146 (diff)
downloadrails-e7f56a7fe8fbb10e62a18b836c27aa1a0f7c5464.tar.gz
rails-e7f56a7fe8fbb10e62a18b836c27aa1a0f7c5464.tar.bz2
rails-e7f56a7fe8fbb10e62a18b836c27aa1a0f7c5464.zip
Raise if MemCacheStore doenst receive a Dalli obj
:mem_cache_store should receive a list of hosts or a dalli client, otherwise raise it. Also adding a changelog.
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/caching_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index 09781f3e7a..7fd76ddf8b 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -110,6 +110,14 @@ class CacheStoreSettingTest < ActiveSupport::TestCase
assert_kind_of(ActiveSupport::Cache::MemCacheStore, store)
end
+ def test_mem_cache_fragment_cache_store_with_not_dalli_client
+ Dalli::Client.expects(:new).never
+ memcache = Object.new
+ assert_raises(ArgumentError) do
+ ActiveSupport::Cache.lookup_store :mem_cache_store, memcache
+ end
+ end
+
def test_mem_cache_fragment_cache_store_with_multiple_servers
Dalli::Client.expects(:new).with(%w[localhost 192.168.1.1], {})
store = ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost", '192.168.1.1'