Use stubbing instead of sleep() in File store cache tests

This commit is contained in:
Pratik Naik
2009-06-21 14:51:43 +01:00
parent b5775c2b3e
commit 66eb05821b

View File

@@ -148,12 +148,18 @@ class FileStoreTest < ActiveSupport::TestCase
include CacheStoreBehavior
def test_expires_in
time = Time.local(2008, 4, 24)
Time.stubs(:now).returns(time)
File.stubs(:mtime).returns(time)
@cache.write('foo', 'bar')
cache_read = lambda { @cache.read('foo', :expires_in => 2) }
cache_read = lambda { @cache.read('foo', :expires_in => 1.minute) }
assert_equal 'bar', cache_read.call
sleep(1)
Time.stubs(:now).returns(time + 30.seconds)
assert_equal 'bar', cache_read.call
sleep(1)
Time.stubs(:now).returns(time + 2.minutes)
assert_nil cache_read.call
end
end