Sha256: 76508fde3cbfcc4fb6c87a1c76bc11ce23a19647a6ffe05e095bce24a491c8ba
Contents?: true
Size: 501 Bytes
Versions: 81
Compression:
Stored size: 501 Bytes
Contents
require 'spec_helper' # this is a simple sanity check of my timeout addition describe Zookeeper::Latch do subject { described_class.new } describe %[await] do describe %[with timeout] do it %[should return after waiting until timeout if not released] do other_latch = described_class.new th = Thread.new do subject.await(0.01) other_latch.release end other_latch.await th.join(1).should == th end end end end
Version data entries
81 entries across 81 versions & 2 rubygems