From ff95fbdea88e010188809a25832ebf3b0ace4fa7 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 31 Jan 2007 05:54:42 +0000 Subject: [PATCH] * 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/trunk@11605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_iterator.rb | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog b/ChangeLog index da981eb422..c905610d52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jan 31 14:52:09 2007 Yukihiro Matsumoto + + * test/ruby/test_iterator.rb (TestIterator::test_block_given_within_iterator): + add new test. [ruby-core:10125] + Wed Jan 31 14:45:54 2007 Yukihiro Matsumoto * lib/open-uri.rb (OpenURI::OpenURI.open_uri): use user and diff --git a/test/ruby/test_iterator.rb b/test/ruby/test_iterator.rb index 0db54302f5..cc0fe76d7b 100644 --- a/test/ruby/test_iterator.rb +++ b/test/ruby/test_iterator.rb @@ -467,4 +467,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