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.rb22
1 files changed, 1 insertions, 21 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index e5105e92a2..4e212f1661 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -90,27 +90,7 @@ module CacheStoreBehavior
@cache.write('foo', nil)
assert_equal nil, @cache.read('foo')
end
-
- def test_should_read_and_write_false
- @cache.write('foo', false)
- assert_equal false, @cache.read('foo')
- end
-
- def test_should_read_and_write_true
- @cache.write('foo', true)
- assert_equal true, @cache.read('foo')
- end
-
- def test_fetch_false_without_cache_miss
- @cache.write('foo', false)
- assert_equal false, @cache.fetch('foo') { 'baz' }
- end
-
- def test_fetch_nil_without_cache_miss
- @cache.write('foo', nil)
- assert_equal nil, @cache.fetch('foo') { 'baz' }
- end
-
+
def test_fetch_without_cache_miss
@cache.write('foo', 'bar')
assert_equal 'bar', @cache.fetch('foo') { 'baz' }