2019-02-23 17:17:26 +01:00
|
|
|
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
|
2019-08-12 10:57:32 +02:00
|
|
|
ret = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom(class_main)
|
|
|
|
@ins = ret.compilers.first.mom_instructions.next
|
2019-02-23 17:17:26 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_any
|
|
|
|
assert_equal Mom::MessageSetup , @ins.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_no_arg
|
|
|
|
assert_equal Mom::ArgumentTransfer, @ins.next(1).class
|
2019-08-12 10:57:32 +02:00
|
|
|
assert_equal 1, @ins.next(1).arguments.length
|
2019-02-23 17:17:26 +01:00
|
|
|
end
|
|
|
|
def test_call_two
|
|
|
|
assert_equal SimpleCall, @ins.next(2).class
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|