1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_iterate): need to PUSH_ITER in proper order.

[ruby-core:10125]

* test/ruby/test_iterator.rb (TestIterator::test_block_given_within_iterator):
  add new test.  [ruby-core:10125]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-01-31 05:59:23 +00:00
parent 3079f72f42
commit ff46ec3a43
3 changed files with 22 additions and 2 deletions

View file

@ -462,4 +462,16 @@ class TestIterator < Test::Unit::TestCase
assert_equal(ok, result)
return
end
class IterString < ::String
def ===(other)
super if !block_given?
end
end
# Check that the block passed to an iterator
# does not get propagated inappropriately
def test_block_given_within_iterator
assert_equal(["b"], ["a", "b", "c"].grep(IterString.new("b")) {|s| s})
end
end