rubyx/test/vool/send/test_send_simple.rb
Torsten Ruger 4a7cc72732 always list of methods in class
improve vool test dirs
2018-06-30 10:08:18 +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