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

23 lines
462 B
Ruby
Raw Normal View History

2017-04-16 11:39:21 +03:00
require_relative "../helper"
2017-09-11 21:30:28 +03:00
require_relative "simple_send_harness"
2017-04-16 11:39:21 +03:00
module Vool
2017-04-23 17:50:06 +03:00
class TestSendSimpleMom < MiniTest::Test
2017-04-16 11:39:21 +03:00
include MomCompile
2017-09-11 21:30:28 +03:00
include SimpleSendHarness
2017-04-16 11:39:21 +03:00
def setup
Risc.machine.boot
@stats = compile_first_method( "5.mod4").first
@first = @stats.first
2017-04-16 11:39:21 +03:00
end
2017-09-11 21:30:28 +03:00
def receiver
[IntegerStatement , 5]
2017-04-16 11:39:21 +03:00
end
def test_call_has_right_method
2017-09-11 21:30:28 +03:00
assert_equal :mod4, @stats[2].method.name
2017-04-16 11:39:21 +03:00
end
2017-09-11 21:30:28 +03:00
2017-04-16 11:39:21 +03:00
end
end