rubyx/test/support/parfait_test.rb
Torsten Rüger 4bf23defc8 fix many tests with preloading
preloading, something akin to builtin, loads some very small predefined (macro) methods for the tests to work (ie call)
2019-09-12 22:27:26 +03:00

25 lines
762 B
Ruby

module Parfait
module MethodHelper
def make_method(name = :meth , clazz = :Object)
@obj = Parfait.object_space.get_type_by_class_name(clazz)
@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( name , @obj , @args , @frame)
end
end
class ParfaitTest < MiniTest::Test
include MethodHelper
def setup
Parfait.boot!(Parfait.default_test_options)
@space = Parfait.object_space
end
end
class BigParfaitTest < ParfaitTest
def setup
Parfait.boot!(Parfait.full_test_options)
@space = Parfait.object_space
end
end
end