rubyx/test/parfait/helper.rb

18 lines
532 B
Ruby
Raw Normal View History

2018-04-26 12:31:37 +03:00
require_relative "../helper"
module Parfait
class ParfaitTest < MiniTest::Test
def setup
Parfait.boot!
2018-04-26 12:31:37 +03:00
@space = Parfait.object_space
end
2018-07-07 15:50:43 +03:00
def make_method
@obj = Parfait.object_space.get_type_by_class_name(:Object)
2018-07-07 15:50:43 +03:00
@args = Parfait::Type.for_hash( @obj.object_class , { bar: :Integer , foo: :Type})
@frame = Parfait::Type.for_hash( @obj.object_class , { local_bar: :Integer , local_foo: :Type})
@method = Parfait::CallableMethod.new( :meth , @obj , @args , @frame)
2018-07-07 15:50:43 +03:00
end
2018-04-26 12:31:37 +03:00
end
end