1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/enumeratorize', __FILE__)
describe "Array#delete_if" do
before do
@a = [ "a", "b", "c" ]
end
it "removes each element for which block returns true" do
@a = [ "a", "b", "c" ]
@a.delete_if { |x| x >= "b" }
@a.should == ["a"]
end
it "returns self" do
@a.delete_if{ true }.equal?(@a).should be_true
end
it_behaves_like :enumeratorize, :delete_if
it "returns self when called on an Array emptied with #shift" do
array = [1]
array.shift
array.delete_if { |x| true }.should equal(array)
end
ruby_version_is '1.8.7' do
it "returns an Enumerator if no block given, and the enumerator can modify the original array" do
enum = @a.delete_if
enum.should be_an_instance_of(enumerator_class)
@a.should_not be_empty
enum.each { true }
@a.should be_empty
end
end
it "returns an Enumerator if no block given, and the array is frozen" do
@a.freeze.delete_if.should be_an_instance_of(enumerator_class)
end
ruby_version_is '' ... '1.9' do
it "raises a TypeError on a frozen array" do
lambda { ArraySpecs.frozen_array.delete_if {} }.should raise_error(TypeError)
end
it "raises a TypeError on an empty frozen array" do
lambda { ArraySpecs.empty_frozen_array.delete_if {} }.should raise_error(TypeError)
end
end
ruby_version_is '1.9' do
it "raises a RuntimeError on a frozen array" do
lambda { ArraySpecs.frozen_array.delete_if {} }.should raise_error(RuntimeError)
end
it "raises a RuntimeError on an empty frozen array" do
lambda { ArraySpecs.empty_frozen_array.delete_if {} }.should raise_error(RuntimeError)
end
end
it "keeps tainted status" do
@a.taint
@a.tainted?.should be_true
@a.delete_if{ true }
@a.tainted?.should be_true
end
ruby_version_is '1.9' do
it "keeps untrusted status" do
@a.untrust
@a.untrusted?.should be_true
@a.delete_if{ true }
@a.untrusted?.should be_true
end
end
end
|