Sha256: 22e4deda9f7a916a63828d6acd53ab332b10c074b01bcc182a8d1d0f012bcfed

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

# coding: binary
# Generated by generate-specs
require 'helper'

describe_moneta "weak_increment" do
  require 'fog'
  Fog.mock!
  def features
    [:increment]
  end

  def new_store
    Moneta.build do
      use :WeakIncrement
      adapter :Fog,
        aws_access_key_id: 'fake_access_key_id',
        aws_secret_access_key:  'fake_secret_access_key',
        provider:               'AWS',
        dir:                    'weak_increment'
    end
  end

  def load_value(value)
    Marshal.load(value)
  end

  include_context 'setup_store'
  it_should_behave_like 'features'
  it_should_behave_like 'increment'
  it_should_behave_like 'multiprocess'
  it_should_behave_like 'not_create'
  it_should_behave_like 'null_stringkey_stringvalue'
  it_should_behave_like 'null_pathkey_stringvalue'
  it_should_behave_like 'persist_stringkey_stringvalue'
  it_should_behave_like 'persist_pathkey_stringvalue'
  it_should_behave_like 'returnsame_stringkey_stringvalue'
  it_should_behave_like 'returnsame_pathkey_stringvalue'
  it_should_behave_like 'store_stringkey_stringvalue'
  it_should_behave_like 'store_pathkey_stringvalue'
  it_should_behave_like 'store_large'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
moneta-1.0.0 spec/moneta/weak_increment_spec.rb
moneta-0.8.1 spec/moneta/weak_increment_spec.rb
moneta-0.8.0 spec/moneta/weak_increment_spec.rb