rubyx/test/vool/class_send/test_class_def.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

38 lines
901 B
Ruby

require_relative "helper"
module Vool
class TestClassDef < MiniTest::Test
include Mom
def class_main
<<-eos
class Space
def self.one_plus()
return 1 + 1
end
def main(arg)
return Space.one_plus
end
end
eos
end
def setup
source = "class Integer;def +(other);X.int_operator(:+);end;end;" + class_main
ret = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom(source)
@ins = ret.compilers.find{|c|c.callable.name==:main}.mom_instructions.next
end
def test_any
assert_equal Mom::MessageSetup , @ins.class
end
def test_no_arg
assert_equal Mom::ArgumentTransfer, @ins.next(1).class
assert_equal 0, @ins.next(1).arguments.length
end
def test_call_two
assert_equal SimpleCall, @ins.next(2).class
end
end
end