aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/pending.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 13:15:53 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 13:15:53 +0000
commit96b9744b3dab5bb9bbe5f53e2cb861a984b3e50e (patch)
treee73d06bbd106162412138c082a6399abee0f2b58 /bootstraptest/pending.rb
parente037d72514d18deb383dffc8fc45e2fc681cfa75 (diff)
downloadruby-96b9744b3dab5bb9bbe5f53e2cb861a984b3e50e.tar.gz
* bootstraptest/pending.rb: add pending issue.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/pending.rb')
-rw-r--r--bootstraptest/pending.rb19
1 files changed, 19 insertions, 0 deletions
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]'
+