Sha256: bb0d5304d2a004d3593e3ac4226e57ed2088df108de81dddc6f31d967b492420

Contents?: true

Size: 877 Bytes

Versions: 52

Compression:

Stored size: 877 Bytes

Contents

require File.expand_path('../../../spec_helper', __FILE__)

describe "Array#index" do
  it "returns the index of the first element == to object" do
    x = mock('3')
    def x.==(obj) 3 == obj; end

    [2, x, 3, 1, 3, 1].index(3).should == 1
    [2, 3.0, 3, x, 1, 3, 1].index(x).should == 1
  end

  it "returns 0 if first element == to object" do
    [2, 1, 3, 2, 5].index(2).should == 0
  end

  it "returns size-1 if only last element == to object" do
    [2, 1, 3, 1, 5].index(5).should == 4
  end

  it "returns nil if no element == to object" do
    [2, 1, 1, 1, 1].index(3).should == nil
  end

  ruby_version_is "1.8.7" do
    it "accepts a block instead of an argument" do
      [4, 2, 1, 5, 1, 3].index {|x| x < 2}.should == 2
    end

    it "ignore the block if there is an argument" do
      [4, 2, 1, 5, 1, 3].index(5) {|x| x < 2}.should == 3
    end

  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/array/index_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/array/index_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/array/index_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/array/index_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/array/index_spec.rb