Torsten Rüger
c43436f35a
rather large commit, but essentially a simple rename Rationale in docs and blogs
19 lines
343 B
Ruby
19 lines
343 B
Ruby
require_relative "helper"
|
|
|
|
module Vool
|
|
class TestSendSimpleSlotMachine < MiniTest::Test
|
|
include SimpleSendHarness
|
|
|
|
def send_method
|
|
"5.div4;return"
|
|
end
|
|
def receiver
|
|
[SlotMachine::IntegerConstant , 5]
|
|
end
|
|
def test_call_has_right_method
|
|
assert_equal :div4, @ins.next(2).method.name
|
|
end
|
|
|
|
end
|
|
end
|