Sha256: a2af651b9024ea655c90a3a39521fbbfc48a2f1cb0a5ece2aa9e4f0298be076c

Contents?: true

Size: 1.62 KB

Versions: 83

Compression:

Stored size: 1.62 KB

Contents

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

describe "Array#at" do
  it "returns the (n+1)'th element for the passed index n" do
    a = [1, 2, 3, 4, 5, 6]
    a.at(0).should == 1
    a.at(1).should == 2
    a.at(5).should == 6
  end
  
  it "returns nil if the given index is greater than or equal to the array's length" do
    a = [1, 2, 3, 4, 5, 6]
    a.at(6).should == nil
    a.at(7).should == nil
  end

  it "returns the (-n)'th elemet from the last, for the given negative index n" do
    a = [1, 2, 3, 4, 5, 6]
    a.at(-1).should == 6
    a.at(-2).should == 5
    a.at(-6).should == 1
  end

  it "returns nil if the given index is less than -len, where len is length of the array"  do
    a = [1, 2, 3, 4, 5, 6]
    a.at(-7).should == nil
    a.at(-8).should == nil
  end

  it "does not extend the array unless the given index is out of range" do
    a = [1, 2, 3, 4, 5, 6]
    a.length.should == 6
    a.at(100)
    a.length.should == 6
    a.at(-100)
    a.length.should == 6
  end

  it "tries to convert the passed argument to an Integer using #to_int" do
    a = ["a", "b", "c"]
    a.at(0.5).should == "a"
  
    obj = mock('to_int')
    obj.should_receive(:to_int).and_return(2)
    a.at(obj).should == "c"
  end
  
  it "raises a TypeError when the passed argument can't be coerced to Integer" do
    lambda { [].at("cat") }.should raise_error(TypeError)
  end

  it "raises an ArgumentError when 2 or more arguments is passed" do
    lambda { [:a, :b].at(0,1) }.should raise_error(ArgumentError)
  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

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