From 96b9744b3dab5bb9bbe5f53e2cb861a984b3e50e Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 25 Dec 2007 13:15:53 +0000 Subject: [PATCH] * bootstraptest/pending.rb: add pending issue. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ bootstraptest/pending.rb | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/ChangeLog b/ChangeLog index dc7216ca3c..382f3638ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 25 22:13:51 2007 Koichi Sasada + + * bootstraptest/pending.rb: add pending issue. + Tue Dec 25 22:12:40 2007 Koichi Sasada * thread.c: remove Thread.critical(=). diff --git a/bootstraptest/pending.rb b/bootstraptest/pending.rb index 9e31d1c585..9629cea636 100644 --- a/bootstraptest/pending.rb +++ b/bootstraptest/pending.rb @@ -4,3 +4,22 @@ assert_equal 'ok', %q{ } :ok }, '[ruby-dev:32525]' + +assert_equal "ok", %q{ + module Foo + end + + begin + def foo(&b) + Foo.module_eval &b + end + foo{ + def bar + end + } + bar + rescue NoMethodError + :ok + end +}, '[ruby-core:14378]' +