rubyx/test/slot_machine/instruction/test_slot_definition.rb
Torsten Rüger 24d7fe25da first steps to defining specialised slot classes
getting rid of the mess in SlotDefinition (wip)
2020-02-10 18:36:21 +07:00

24 lines
527 B
Ruby

require_relative "helper"
module SlotMachine
class TestSlotDefinitionBasics < MiniTest::Test
def slot(slot = :caller)
MessageDefinition.new(slot)
end
def test_create_ok1
assert_equal :message , slot.known_object
end
def test_create_ok2
assert_equal Array , slot.slots.class
assert_equal :caller , slot.slots.first
end
def test_to_s
assert_equal "[message, caller]" , slot.to_s
end
def test_create_fail_none
assert_raises {slot(nil)}
end
end
end