aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/caching_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/caching_test.rb')
-rw-r--r--activesupport/test/caching_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index e2da2796eb..88c6d6cca4 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -159,11 +159,6 @@ class MemCacheStoreTest < Test::Unit::TestCase
@cache.read('foo').gsub!(/.*/, 'baz')
assert_equal 'bar', @cache.read('foo')
end
-
- # Disabling increment and decrement tests until issues can be addressed in the
- # upstream codebase.
- def test_increment; end
- def test_decrement; end
end
class CompressedMemCacheStore < Test::Unit::TestCase
@@ -173,9 +168,4 @@ class CompressedMemCacheStore < Test::Unit::TestCase
end
include CacheStoreBehavior
-
- # Disabling increment and decrement tests until issues can be addressed in the
- # upstream codebase.
- def test_increment; end
- def test_decrement; end
end