aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-13 22:14:31 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-13 22:14:31 +0000
commit08260c2373db50e2bf0e919282f8921542acb854 (patch)
treee264b6cc9264e5972823f21469f6c4ef6de6553e /activesupport/test
parent5b2ea20f562aa09ade8965f72c4075dd79609956 (diff)
downloadrails-08260c2373db50e2bf0e919282f8921542acb854.tar.gz
rails-08260c2373db50e2bf0e919282f8921542acb854.tar.bz2
rails-08260c2373db50e2bf0e919282f8921542acb854.zip
Remove deprecated key_file_path
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 f489ded1be..02a9e5eff5 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -918,12 +918,6 @@ class FileStoreTest < ActiveSupport::TestCase
@cache.write(1, nil)
assert_equal false, @cache.write(1, "aaaaaaaaaa", unless_exist: true)
end
-
- def test_can_call_deprecated_key_file_path
- assert_deprecated "`key_file_path` is deprecated" do
- assert_equal 111, @cache.send(:key_file_path, 111)
- end
- end
end
class MemoryStoreTest < ActiveSupport::TestCase