aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-13 22:16:54 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-13 22:16:54 +0000
commit8b646041be722f07b5c472df3603511962708d60 (patch)
treea6eb4ec7c06dd5312413b1e4900f9f1eb27932dc /activesupport/test
parentefdb785d7fb791f9968242efe96fe3ae4538b38e (diff)
downloadrails-8b646041be722f07b5c472df3603511962708d60.tar.gz
rails-8b646041be722f07b5c472df3603511962708d60.tar.bz2
rails-8b646041be722f07b5c472df3603511962708d60.zip
Remove deprecated set_cache_value
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/caching_test.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index e2864012d8..4022154eed 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -747,15 +747,6 @@ module LocalCacheBehavior
app = @cache.middleware.new(app)
app.call({})
end
-
- def test_can_call_deprecated_set_cache_value
- @cache.with_local_cache do
- assert_deprecated "`set_cache_value` is deprecated" do
- @cache.send(:set_cache_value, 1, "foo", :ignored, {})
- end
- assert_equal 1, @cache.read("foo")
- end
- end
end
module AutoloadingCacheBehavior