rubyx/test/vool/to_mom/send/test_send_simple.rb
2018-04-26 20:26:42 +03:00

19 lines
320 B
Ruby

require_relative "helper"
module Vool
class TestSendSimpleMom < MiniTest::Test
include SimpleSendHarness
def send_method
"5.div4"
end
def receiver
[Mom::IntegerConstant , 5]
end
def test_call_has_right_method
assert_equal :div4, @ins.next(2).method.name
end
end
end