aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-13 22:15:45 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-13 22:15:45 +0000
commitefdb785d7fb791f9968242efe96fe3ae4538b38e (patch)
tree74e307a689e83895fb23c089432ca198fcb2cb2e /activesupport/test
parent08260c2373db50e2bf0e919282f8921542acb854 (diff)
downloadrails-efdb785d7fb791f9968242efe96fe3ae4538b38e.tar.gz
rails-efdb785d7fb791f9968242efe96fe3ae4538b38e.tar.bz2
rails-efdb785d7fb791f9968242efe96fe3ae4538b38e.zip
Remove deprecated escape_key
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/caching_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index 02a9e5eff5..e2864012d8 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -1092,12 +1092,6 @@ class MemCacheStoreTest < ActiveSupport::TestCase
value << "bingo"
assert_not_equal value, @cache.read("foo")
end
-
- def test_can_call_deprecated_escape_key
- assert_deprecated "`escape_key` is deprecated" do
- assert_equal 111, @cache.send(:escape_key, 111)
- end
- end
end
class NullStoreTest < ActiveSupport::TestCase