diff options
author | Doug Barth <dougbarth@gmail.com> | 2008-10-09 10:47:32 -0500 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-10-17 18:09:27 +0200 |
commit | 4b63c2700ffc5c646af0e728d4ec2fcb6770671b (patch) | |
tree | e0b504b733cf534f5822f976f312e3fe6ec6e1f6 /activesupport/test | |
parent | c3d6205a4ba92e25f1092ac9c1f4e72ee3c796ed (diff) | |
download | rails-4b63c2700ffc5c646af0e728d4ec2fcb6770671b.tar.gz rails-4b63c2700ffc5c646af0e728d4ec2fcb6770671b.tar.bz2 rails-4b63c2700ffc5c646af0e728d4ec2fcb6770671b.zip |
Bring MemCacheStore and CompressedMemCacheStore inline with expected counter manipulation semantics.
Signed-off-by: Michael Koziarski <michael@koziarski.com>
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/caching_test.rb | 10 |
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 |