rubyx/test/sol/send/test_send_simple.rb

19 lines
342 B
Ruby
Raw Normal View History

2018-04-26 19:26:42 +02:00
require_relative "helper"
2017-04-16 10:39:21 +02:00
module Sol
class TestSendSimpleSlotMachine < MiniTest::Test
2017-09-11 20:30:28 +02:00
include SimpleSendHarness
2017-04-16 10:39:21 +02:00
2018-04-26 19:26:42 +02:00
def send_method
"5.div4;return"
2017-04-16 10:39:21 +02:00
end
2017-09-11 20:30:28 +02:00
def receiver
[SlotMachine::IntegerConstant , 5]
2017-04-16 10:39:21 +02:00
end
def test_call_has_right_method
2018-04-19 09:00:55 +02:00
assert_equal :div4, @ins.next(2).method.name
2017-04-16 10:39:21 +02:00
end
2017-09-11 20:30:28 +02:00
2017-04-16 10:39:21 +02:00
end
end