mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bootstraptest/pending.rb: add pending issue.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e037d72514
commit
96b9744b3d
2 changed files with 23 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Dec 25 22:13:51 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* bootstraptest/pending.rb: add pending issue.
|
||||||
|
|
||||||
Tue Dec 25 22:12:40 2007 Koichi Sasada <ko1@atdot.net>
|
Tue Dec 25 22:12:40 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* thread.c: remove Thread.critical(=).
|
* thread.c: remove Thread.critical(=).
|
||||||
|
|
|
@ -4,3 +4,22 @@ assert_equal 'ok', %q{
|
||||||
}
|
}
|
||||||
:ok
|
:ok
|
||||||
}, '[ruby-dev:32525]'
|
}, '[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]'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue