Sha256: a2fd0d58852cfdcd4895d7e33e11665ead23fa7d1132078319c067c579479ce9
Contents?: true
Size: 934 Bytes
Versions: 2
Compression:
Stored size: 934 Bytes
Contents
require 'promise_pool/test' describe PromisePool::Future do would 'return the value' do Promise.new.defer{ 'value' }.future.should.eq 'value' end would 'raise an exception' do expect.raise(RuntimeError) do Promise.new.defer do raise 'nnf' end.future.oops end.message.should.eq 'nnf' end would 'raise an exception if it is returning an exception' do expect.raise(RuntimeError) do Promise.new.defer{ RuntimeError.new('nnf') }.future.oops end.message.should.eq 'nnf' end would 'respond_to_missing? properly' do [Promise.new.defer{0}.future].flatten.first.should.eq 0 end would 'resolve deep futures so that it could be serialized' do value = Promise.new.defer{ 0 }.future array = Promise.new.defer{ [value] }.future hash = Promise.new.defer{ {:a => array} }.future expect(Marshal.load(Marshal.dump(Future.resolve(hash)))).eq(:a => [0]) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
promise_pool-0.9.2 | test/test_future.rb |
promise_pool-0.9.1 | test/test_future.rb |