Sha256: 30d7ae92606e05368fb1cd1f5ddbfbcc6c60efed1834156d9bf1bb22fd7e12e1

Contents?: true

Size: 509 Bytes

Versions: 5

Compression:

Stored size: 509 Bytes

Contents

shared_examples :default_expires do
  at_each_usec do
    it 'sets the default expiration time', default_expires: true do
      store['key1'] = 'val1'
      advance(t_res / 4.0) # sleep less than a single time-space
      store.key?('key1').should be true
      store.fetch('key1').should == 'val1'
      store.load('key1').should == 'val1'
      advance min_ttl + t_res
      store.key?('key1').should be false
      store.fetch('key1').should be_nil
      store.load('key1').should be_nil
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
moneta-1.3.0 spec/features/default_expires.rb
moneta-1.2.1 spec/features/default_expires.rb
moneta-1.2.0 spec/features/default_expires.rb
moneta-1.1.1 spec/features/default_expires.rb
moneta-1.1.0 spec/features/default_expires.rb