Sha256: 78042391699154c10043301492e1e648041f293313ef97c6da69eb6a295dd8c5
Contents?: true
Size: 1.58 KB
Versions: 2
Compression:
Stored size: 1.58 KB
Contents
# coding: binary # Generated by generate-specs require 'helper' describe_moneta "mutex" do def features [] end def new_store Moneta.new(:Memory, logger: {file: File.join(make_tempdir, 'mutex.log')}) end def load_value(value) Marshal.load(value) end include_context 'setup_store' it 'should have #lock' do mutex = Moneta::Mutex.new(store, 'mutex') mutex.lock.should be true mutex.locked?.should be true expect do mutex.lock end.to raise_error(RuntimeError) expect do mutex.try_lock end.to raise_error(RuntimeError) mutex.unlock.should be_nil mutex.locked?.should be false end it 'should have #enter' do mutex = Moneta::Mutex.new(store, 'mutex') mutex.enter.should be true mutex.locked?.should be true expect do mutex.enter end.to raise_error(RuntimeError) expect do mutex.try_enter end.to raise_error(RuntimeError) mutex.leave.should be_nil mutex.locked?.should be false end it 'should lock with #lock' do a = Moneta::Mutex.new(store, 'mutex') b = Moneta::Mutex.new(store, 'mutex') a.lock.should be true b.try_lock.should be false a.unlock.should be_nil end it 'should have lock timeout' do a = Moneta::Mutex.new(store, 'mutex') b = Moneta::Mutex.new(store, 'mutex') a.lock.should be true b.lock(1).should be false a.unlock.should be_nil end it 'should have #synchronize' do mutex = Moneta::Mutex.new(store, 'mutex') mutex.synchronize do mutex.locked?.should be true end mutex.locked?.should be false end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
moneta-1.0.0 | spec/moneta/mutex_spec.rb |
moneta-0.8.1 | spec/moneta/mutex_spec.rb |