COMMIT Kernel#require_relative: basic specs http://github.com/rubyspec/rubyspec/commit/d7ff2bee090df4b254f7fcaa70bef6f0e6081dff COMMIT Add tests for mutative methods and empty frozen arrays. http://github.com/rubyspec/rubyspec/commit/f6ebbda9a877dedd59dbf4f610c9cc217adc3f42 COMMIT Array#sort_by: remove alien specs that didn't apply to any version of Ruby http://github.com/rubyspec/rubyspec/commit/96c4cd2d29d56d9873a4e9926c859346e1533e57 COMMIT Array#shuffle: Fix wrong spec http://github.com/rubyspec/rubyspec/commit/e32ce13d85de07fa5c74e65be36a995311980699 =================================================================== +++ 20101207T020728 @@ 8055 @@ - returns self when called on an Array emptied with #shift - returns an Enumerator if no block given, and the enumerator can modify the original array - raises a TypeError on a frozen array +- raises a TypeError on an empty frozen array - keeps tainted status /var/lib/chkbuild/tmp/build/ruby-1.8-o3//rubyspec/core/array/delete_spec.rb @@ 8262 @@ - replaces all elements in the array with the filler if not given a index nor a length - replaces all elements with the value of block (index given to block) - raises a TypeError on a frozen array +- raises a TypeError on an empty frozen array - raises an ArgumentError if 4 or more arguments are passed when no block given - raises an ArgumentError if no argument passed and no block given - raises an ArgumentError if 3 or more arguments are passed when a block given @@ 9617 @@ - properly handles recursive arrays - keeps taint status - raises a TypeError on a frozen array +- raises a TypeError on an empty frozen array Array#pop passed a number n as an argument - removes and returns an array with the last n elements of the array @@ 9670 @@ - returns nil when called on an Array emptied with #shift - returns nil if no changes are made - raises a TypeError on a frozen array +- raises a TypeError on an empty frozen array - returns an Enumerator if no block given /var/lib/chkbuild/tmp/build/ruby-1.8-o3//rubyspec/core/array/repeated_combination_spec.rb @@ 9742 @@ - returns nil when the array is empty - properly handles recursive arrays - raises a TypeError on a frozen array +- raises a TypeError on an empty frozen array Array#shift passed a number n as an argument - removes and returns an array with the first n element of the array @@ 37743 @@ Finished in seconds +3304 files, 13690 examples, expectations, 74 failures, 75 errors exit 1 failed(rubyspec) == end #