diff options
author | Santosh Wadghule <santosh.wadghule@gmail.com> | 2016-07-17 12:04:20 +0530 |
---|---|---|
committer | Santosh Wadghule <santosh.wadghule@gmail.com> | 2016-07-17 12:07:11 +0530 |
commit | eb8cd81859bd9f7df8cc08602200847e41e85f0d (patch) | |
tree | 8348d294a14dc3f0ae718b5d42af4f0f4b264474 /activesupport | |
parent | 5494af0c0f087a959c7f50e6689ff540cedef130 (diff) | |
download | rails-eb8cd81859bd9f7df8cc08602200847e41e85f0d.tar.gz rails-eb8cd81859bd9f7df8cc08602200847e41e85f0d.tar.bz2 rails-eb8cd81859bd9f7df8cc08602200847e41e85f0d.zip |
Remove duplicate test.
We already test similar stuff in `test_really_long_keys` so removing
this extra and duplicated test.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/caching_test.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb index 8002c14539..cf58a7d5da 100644 --- a/activesupport/test/caching_test.rb +++ b/activesupport/test/caching_test.rb @@ -809,11 +809,6 @@ class FileStoreTest < ActiveSupport::TestCase @cache.clear end - def test_long_keys - @cache.write("a"*10000, 1) - assert_equal 1, @cache.read("a"*10000) - end - def test_long_uri_encoded_keys @cache.write("%"*870, 1) assert_equal 1, @cache.read("%"*870) |