mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1dc17e7b2e
Follow up of #32605.
16 lines
481 B
Ruby
16 lines
481 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_unit"
|
|
require "active_support/cache"
|
|
|
|
class CacheEntryTest < ActiveSupport::TestCase
|
|
def test_expired
|
|
entry = ActiveSupport::Cache::Entry.new("value")
|
|
assert_not entry.expired?, "entry not expired"
|
|
entry = ActiveSupport::Cache::Entry.new("value", expires_in: 60)
|
|
assert_not entry.expired?, "entry not expired"
|
|
Time.stub(:now, Time.now + 61) do
|
|
assert entry.expired?, "entry is expired"
|
|
end
|
|
end
|
|
end
|