Sha256: c4fd20b854adf6033405a92c9e2bf53e56b25715590b0ff884292c2c91e62923
Contents?: true
Size: 502 Bytes
Versions: 52
Compression:
Stored size: 502 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) ruby_version_is "1.9" do describe "Enumerator::Yielder#<<" do # TODO: There's some common behavior between yield and <<; move to a shared spec it "yields the value to the block" do ary = [] y = Enumerator::Yielder.new {|x| ary << x} y << 1 ary.should == [1] end it "returns the the yielder" do y = Enumerator::Yielder.new {|x| x + 1} (y << 1).should == y end end end
Version data entries
52 entries across 52 versions & 2 rubygems