1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/bootstraptest/test_knownbug.rb
akr 089cfabaf0 add test for [ruby-dev:31609].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-29 06:54:56 +00:00

22 lines
333 B
Ruby

#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#
# massign
assert_equal 'ok', %q{
def m()
yield :ng
end
r = :ok
m {|(r)|}
r
}, '[ruby-dev:31507]'
assert_equal 'ok', %q{
begin
catch {|t| throw t, :ok }
rescue ArgumentError
:ng
end
}, '[ruby-dev:31609]'