Sha256: d93a4797bcb40f6e6e11c8c7da70b42db4f657aa6165c7c52ca4352f2a452f56

Contents?: true

Size: 1.36 KB

Versions: 58

Compression:

Stored size: 1.36 KB

Contents

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

describe "Array#push" do
  it "appends the arguments to the array" do
    a = [ "a", "b", "c" ]
    a.push("d", "e", "f").should equal(a)
    a.push().should == ["a", "b", "c", "d", "e", "f"]
    a.push(5)
    a.should == ["a", "b", "c", "d", "e", "f", 5]
  end

  it "isn't confused by previous shift" do
    a = [ "a", "b", "c" ]
    a.shift
    a.push("foo")
    a.should == ["b", "c", "foo"]
  end

  it "properly handles recursive arrays" do
    empty = ArraySpecs.empty_recursive_array
    empty.push(:last).should == [empty, :last]

    array = ArraySpecs.recursive_array
    array.push(:last).should == [1, 'two', 3.0, array, array, array, array, array, :last]
  end

  ruby_version_is "" ... "1.9" do
    it "raises a TypeError on a frozen array if modification takes place" do
      lambda { ArraySpecs.frozen_array.push(1) }.should raise_error(TypeError)
    end

    it "does not raise on a frozen array if no modification is made" do
      ArraySpecs.frozen_array.push.should == [1, 2, 3]
    end
  end

  ruby_version_is "1.9" do
    it "raises a RuntimeError on a frozen array" do
      lambda { ArraySpecs.frozen_array.push(1) }.should raise_error(RuntimeError)
      lambda { ArraySpecs.frozen_array.push }.should raise_error(RuntimeError)
    end
  end
end

Version data entries

58 entries across 58 versions & 3 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/array/push_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/array/push_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/array/push_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/array/push_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/array/push_spec.rb
opal-0.4.4 spec/rubyspec/core/array/push_spec.rb
opal-0.4.3 spec/rubyspec/core/array/push_spec.rb
opal-0.4.2 spec/rubyspec/core/array/push_spec.rb