2017-04-19 19:59:13 +02:00
|
|
|
require_relative "../helper"
|
2017-09-11 20:30:28 +02:00
|
|
|
require_relative "simple_send_harness"
|
2017-04-19 19:59:13 +02:00
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSendSimpleStringArgsMom < MiniTest::Test
|
|
|
|
include MomCompile
|
2017-09-11 20:30:28 +02:00
|
|
|
include SimpleSendHarness
|
2017-04-19 19:59:13 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
|
|
|
@stats = compile_first_method( "'5'.get_internal_byte(1)").first
|
2017-09-10 12:14:51 +02:00
|
|
|
@first = @stats.first
|
2017-04-19 19:59:13 +02:00
|
|
|
end
|
2017-09-11 20:30:28 +02:00
|
|
|
def receiver
|
|
|
|
[StringStatement , "5"]
|
2017-04-19 19:59:13 +02:00
|
|
|
end
|
2017-09-11 20:30:28 +02:00
|
|
|
|
2017-04-19 19:59:13 +02:00
|
|
|
def test_args_one_move
|
2017-09-11 20:30:28 +02:00
|
|
|
assert_equal :next_message, @stats[1].arguments[0].left[1]
|
|
|
|
assert_equal :arguments, @stats[1].arguments[0].left[2]
|
2017-04-19 19:59:13 +02:00
|
|
|
end
|
2017-09-11 20:30:28 +02:00
|
|
|
def test_args_one_str
|
|
|
|
assert_equal IntegerStatement, @stats[1].arguments[0].right.class
|
|
|
|
assert_equal 1, @stats[1].arguments[0].right.value
|
2017-04-19 19:59:13 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|