Sha256: 87b89692d7574bad2d91f2adcd987afa47f84462ce3348f6356728f1aa2cd1e1

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 KB

Contents

describe "Array#last" do
  it "returns the last element" do
    [1, 1, 1, 1, 2].last.should == 2
  end
  
  it "returns nil if self is empty" do
    [].last.should == nil
  end
  
  it "returns the last count elements if given a count" do
    [1, 2, 3, 4, 5, 9].last(3).should == [4, 5, 9]
  end
  
  it "returns an empty array when passeed a count on an empty array" do
    [].last(0).should == []
    [].last(1).should == []
  end
  
  it "returns an empty array when count == 0" do
    [1, 2, 3, 4, 5].last(0).should == []
  end
  
  it "returns an array containing the last element when passed count == 1" do
    [1, 2, 3, 4, 5].last(1).should == [5]
  end
  
  it "returns the entire array when count > length" do
    [1, 2, 3, 4, 5, 9].last(10).should == [1, 2, 3, 4, 5, 9]
  end
  
  it "returns an array which is independant to the original when passed count" do
    ary = [1, 2, 3, 4, 5]
    ary.last(0).replace([1, 2])
    ary.should == [1, 2, 3, 4, 5]
    ary.last(1).replace([1, 2])
    ary.should == [1, 2, 3, 4, 5]
    ary.last(6).replace([1, 2])
    ary.should == [1, 2, 3, 4, 5]
  end
  
  it "is not destructive" do
    a = [1, 2, 3]
    a.last
    a.should == [1, 2, 3]
    a.last(2)
    a.should == [1, 2, 3]
    a.last(3)
    a.should == [1, 2, 3]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
opal-0.3.2 gems/core/spec/core/array/last_spec.rb
opal-0.3.1 gems/core/spec/core/array/last_spec.rb
opal-0.3.0 gems/core/spec/core/array/last_spec.rb