summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-10 10:26:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-10 10:26:32 +0000
commit51982c8139b2e0f3191434c1d72b974bcf3288c6 (patch)
tree0ce984c861b72dd4a833fb166f1b85c6c45a7cb2 /test
parente8c6254680c2759df5d5e22818608fb84003d6c3 (diff)
enumerator.c: fix nested maps
* enumerator.c (lazy_map_proc, lazy_grep_iter_proc): marks values returned by blocks are not packed in the case of nested maps, so that the result will be same as non-lazy version. based on the patch by akihikodaki (Akihiko Odaki) at [ruby-core:81638], without GCC extension. [Bug#13648] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_lazy_enumerator.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/test/ruby/test_lazy_enumerator.rb b/test/ruby/test_lazy_enumerator.rb
index 792a95bb7e..e6888583f9 100644
--- a/test/ruby/test_lazy_enumerator.rb
+++ b/test/ruby/test_lazy_enumerator.rb
@@ -14,7 +14,14 @@ class TestLazyEnumerator < Test::Unit::TestCase
def each(*args)
@args = args
- @enum.each {|i| @current = i; yield i}
+ @enum.each do |v|
+ @current = v
+ if v.is_a? Enumerable
+ yield *v
+ else
+ yield v
+ end
+ end
end
end
@@ -100,6 +107,15 @@ class TestLazyEnumerator < Test::Unit::TestCase
assert_equal(1, a.current)
end
+ def test_map_packed_nested
+ bug = '[ruby-core:81638] [Bug#13648]'
+
+ a = Step.new([[1, 2]])
+ expected = [[[1, 2]]]
+ assert_equal(expected, a.map {|*args| args}.map {|*args| args}.to_a)
+ assert_equal(expected, a.lazy.map {|*args| args}.map {|*args| args}.to_a, bug)
+ end
+
def test_flat_map
a = Step.new(1..3)
assert_equal(2, a.flat_map {|x| [x * 2]}.first)