Sha256: e6d36822c31b5884defdaa8ca47691e8f8847a46b512f70667738e83faeda173

Contents?: true

Size: 1.61 KB

Versions: 83

Compression:

Stored size: 1.61 KB

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes'

describe "Enumerable#each_with_index" do

  before :each do
    @b = EnumerableSpecs::Numerous.new(2, 5, 3, 6, 1, 4)
  end 
  
  it "passes each element and its index to block" do
    @a = []
    @b.each_with_index { |o, i| @a << [o, i] }
    @a.should == [[2, 0], [5, 1], [3, 2], [6, 3], [1, 4], [4, 5]]
  end
  
  it "provides each element to the block" do  
    acc = []
    obj = EnumerableSpecs::EachDefiner.new()
    res = obj.each_with_index {|a,i| acc << [a,i]}
    acc.should == []
    obj.should == res
  end
  
  it "provides each element to the block and its index" do
    acc = [] 
    res = @b.each_with_index {|a,i| acc << [a,i]}
    [[2, 0], [5, 1], [3, 2], [6, 3], [1, 4], [4, 5]].should == acc
    res.should eql(@b)
  end

  it "binds splat arguments properly" do
    acc = []
    res = @b.each_with_index { |*b| c,d = b; acc << c; acc << d }
    [2, 0, 5, 1, 3, 2, 6, 3, 1, 4, 4, 5].should == acc
    res.should eql(@b)
  end
  
  ruby_version_is '1.8.7' do
    it "returns an enumerator if no block" do 
      e = @b.each_with_index
      e.should be_kind_of(enumerator_class)
      e.to_a.should == [[2, 0], [5, 1], [3, 2], [6, 3], [1, 4], [4, 5]]
    end    
  end
  
  ruby_version_is '1.9' do
    it "passes extra parameters to each" do 
      count = EnumerableSpecs::EachCounter.new(:apple)
      e = count.each_with_index(:foo, :bar)
      e.to_a.should == [[:apple, 0]]
      count.arguments_passed.should == [:foo, :bar]
    end    

  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-3.1.1 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.1.beta spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0.beta.5 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0.beta.4 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0.beta.3 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0.beta.2 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.1.0.beta.1 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.2 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.2.beta.1 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.8 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.7 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.6 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.5 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.4 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.3 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.1.beta.2 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.0 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb
rhodes-3.0.0.beta.7 spec/framework_spec/app/spec/core/enumerable/each_with_index_spec.rb