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_attr.rb
nobu ad82a53e5d * bootstraptest/test_attr.rb: added for [ruby-core:15120].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-01-17 16:53:48 +00:00

10 lines
146 B
Ruby

assert_equal %{ok}, %{
class A
attr :m
end
begin
A.new.m(3)
rescue ArgumentError => e
print "ok"
end
}, '[ruby-core:15120]'