2018-04-26 20:26:42 +03:00
|
|
|
require_relative "helper"
|
2017-04-16 11:39:21 +03:00
|
|
|
|
|
|
|
module Vool
|
2017-04-23 17:50:06 +03:00
|
|
|
class TestSendSimpleMom < MiniTest::Test
|
2017-09-11 21:30:28 +03:00
|
|
|
include SimpleSendHarness
|
2017-04-16 11:39:21 +03:00
|
|
|
|
2018-04-26 20:26:42 +03:00
|
|
|
def send_method
|
|
|
|
"5.div4"
|
2017-04-16 11:39:21 +03:00
|
|
|
end
|
2017-09-11 21:30:28 +03:00
|
|
|
def receiver
|
2018-03-13 12:30:51 +05:30
|
|
|
[Mom::IntegerConstant , 5]
|
2017-04-16 11:39:21 +03:00
|
|
|
end
|
|
|
|
def test_call_has_right_method
|
2018-04-19 10:00:55 +03:00
|
|
|
assert_equal :div4, @ins.next(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
|