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
Aaron Patterson 9a6803c90b
Revert "This commit implements the Object Shapes technique in CRuby."
This reverts commit 68bc9e2e97d12f80df0d113e284864e225f771c2.
2022-09-30 16:01:50 -07:00

36 lines
541 B
Ruby

assert_equal 'ok', %q{
module M
class A
class << self
attr_accessor :at
def workflow_rule
yield self
end
def eval_str(str)
eval(str)
end
end
end
end
begin
M::A.eval_str(<<-END)
workflow_rule do |r|
r.at 1
end
END
rescue ArgumentError => e
print "ok"
end
}, '[ruby-core:14641]'
assert_equal %{ok}, %{
class A
attr :m
end
begin
A.new.m(3)
rescue ArgumentError => e
print "ok"
end
}, '[ruby-core:15120]'