Change return value of Enumerable#each_slice

More compatibility to CRuby.
This commit is contained in:
Kenji Okimoto
2017-04-03 16:46:47 +09:00
parent 666787beb2
commit cff54ab2f3
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -154,6 +154,7 @@ module Enumerable
end
end
block.call(ary) unless ary.empty?
nil
end
##
+2 -1
View File
@@ -31,8 +31,9 @@ end
assert("Enumerable#each_slice") do
a = []
(1..10).each_slice(3){|e| a << e}
b = (1..10).each_slice(3){|e| a << e}
assert_equal [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10]], a
assert_equal nil, b
end
assert("Enumerable#group_by") do