Sha256: 0f66c8c624b2d6322572a9b7237b5e351af28610c6da6a96ab6fa5a3cff5012c
Contents?: true
Size: 453 Bytes
Versions: 52
Compression:
Stored size: 453 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) ruby_version_is "1.9" do describe "Enumerator::Yielder#yield" do it "yields the value to the block" do ary = [] y = Enumerator::Yielder.new {|x| ary << x} y.yield 1 ary.should == [1] end it "returns the result of the block for the given value" do y = Enumerator::Yielder.new {|x| x + 1} y.yield(1).should == 2 end end end
Version data entries
52 entries across 52 versions & 2 rubygems