rubyx/test/vool/to_mom/send/test_send_simple_string.rb

27 lines
719 B
Ruby
Raw Normal View History

require_relative "../helper"
2017-09-11 20:30:28 +02:00
require_relative "simple_send_harness"
module Vool
class TestSendSimpleStringArgsMom < MiniTest::Test
include MomCompile
2017-09-11 20:30:28 +02:00
include SimpleSendHarness
def setup
Risc.machine.boot
@stats = compile_first_method( "'5'.get_internal_byte(1)")
end
2017-09-11 20:30:28 +02:00
def receiver
2018-03-13 08:00:51 +01:00
[Mom::StringConstant , "5"]
end
2017-09-11 20:30:28 +02:00
def test_args_one_move
2018-03-10 13:34:04 +01:00
assert_equal :next_message, @stats[1].arguments[0].left.slots[0]
assert_equal :arguments, @stats[1].arguments[0].left.slots[1]
end
2017-09-11 20:30:28 +02:00
def test_args_one_str
2018-03-13 08:00:51 +01:00
assert_equal Mom::IntegerConstant, @stats[1].arguments[0].right.class
2017-09-11 20:30:28 +02:00
assert_equal 1, @stats[1].arguments[0].right.value
end
end
end