Sha256: d36523c8677ed9dced701344ed6de8f67a5093db638274b2e05614a5e13e18bf
Contents?: true
Size: 1.96 KB
Versions: 52
Compression:
Stored size: 1.96 KB
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes', __FILE__) describe "Array#shuffle" do ruby_version_is "1.8.7" do it "returns the same values, in a usually different order" do a = [1, 2, 3, 4] different = false 10.times do s = a.shuffle s.sort.should == a different ||= (a != s) end different.should be_true # Will fail once in a blue moon (4!^10) end it "is not destructive" do a = [1, 2, 3] 10.times do a.shuffle a.should == [1, 2, 3] end end end ruby_version_is "1.8.7" ... "1.9.3" do it "returns subclass instances with Array subclass" do ArraySpecs::MyArray[1, 2, 3].shuffle.should be_an_instance_of(ArraySpecs::MyArray) end end ruby_version_is "1.9.3" do it "does not return subclass instances with Array subclass" do ArraySpecs::MyArray[1, 2, 3].shuffle.should be_an_instance_of(Array) end end end describe "Array#shuffle!" do ruby_version_is "1.8.7" do it "returns the same values, in a usually different order" do a = [1, 2, 3, 4] original = a different = false 10.times do a = a.shuffle! a.sort.should == [1, 2, 3, 4] different ||= (a != [1, 2, 3, 4]) end different.should be_true # Will fail once in a blue moon (4!^10) a.should equal(original) end ruby_version_is ""..."1.9" do it "raises a TypeError on a frozen array" do lambda { ArraySpecs.frozen_array.shuffle! }.should raise_error(TypeError) lambda { ArraySpecs.empty_frozen_array.shuffle! }.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.shuffle! }.should raise_error(RuntimeError) lambda { ArraySpecs.empty_frozen_array.shuffle! }.should raise_error(RuntimeError) end end end end
Version data entries
52 entries across 52 versions & 2 rubygems