Sha256: b330b8bc17784031eb4638cc086c0ef6a045ea4a5ddafba44a6db845ce7bd3bf

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

# Generated by generate-specs
require 'helper'

describe_moneta "shared_unix" do
  def features
    [:create, :increment]
  end

  def new_store
    Moneta.build do
      use(:Shared, :socket => File.join(make_tempdir, 'shared_unix.socket')) do
        adapter :PStore, :file => File.join(make_tempdir, 'shared_unix')
      end
    end
  end

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

  include_context 'setup_store'
  it_should_behave_like 'concurrent_create'
  it_should_behave_like 'concurrent_increment'
  it_should_behave_like 'create'
  it_should_behave_like 'features'
  it_should_behave_like 'increment'
  it_should_behave_like 'multiprocess'
  it_should_behave_like 'null_stringkey_stringvalue'
  it_should_behave_like 'persist_stringkey_stringvalue'
  it_should_behave_like 'returndifferent_stringkey_stringvalue'
  it_should_behave_like 'store_stringkey_stringvalue'
  it_should_behave_like 'store_large'
  it 'shares values' do
    store['shared_key'] = 'shared_value'
    second = new_store
    second.key?('shared_key').should be_true
    second['shared_key'].should == 'shared_value'
    second.close
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
moneta-0.7.19 spec/moneta/shared_unix_spec.rb
moneta-0.7.18 spec/moneta/shared_unix_spec.rb
moneta-0.7.17 spec/moneta/shared_unix_spec.rb
moneta-0.7.16 spec/moneta/shared_unix_spec.rb
moneta-0.7.15 spec/moneta/shared_unix_spec.rb
moneta-0.7.14 spec/moneta/shared_unix_spec.rb