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

* bootstraptest/pending.rb: move/remove solved issues.

* bootstraptest/test_class.rb: ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-06-08 18:13:09 +00:00
parent 2bafbe1465
commit 7e6c9db4e2
3 changed files with 19 additions and 123 deletions

View file

@ -1,25 +0,0 @@
assert_equal 'ok', %q{
1.times{
eval("break")
}
: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]'