OlderDiff < 20101205T212828Z < ThisDiff > 20101206T212818Z > NewerDiff
COMMIT Array#shuffle: Fix wrong spec COMMIT Array#sort_by: remove alien specs that didn't apply to any version of Ruby COMMIT Add tests for mutative methods and empty frozen arrays. COMMIT Kernel#require_relative: basic specs =================================================================== +++ 20101206T212818Z @@ 9303 @@ - 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 /Users/chkbuild/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/array/delete_spec.rb @@ 9510 @@ - 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 @@ 10865 @@ - 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 @@ 10918 @@ - 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 /Users/chkbuild/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/array/repeated_combination_spec.rb @@ 10990 @@ - 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 @@ 38609 @@ Finished in <t> seconds +3286 files, 13688 examples, <num> expectations, 73 failures, 58 errors exit 1 failed(rubyspec) == end # <time> =================================================================== --- 20101205T212828Z @@ 38604 @@ Finished in <t> seconds -3286 files, 13683 examples, <num> expectations, 73 failures, 58 errors exit 1 failed(rubyspec) == end # <time>
OlderDiff < 20101205T212828Z < ThisDiff > 20101206T212818Z > NewerDiff