rubyx/test/slot_machine/instructions/test_slot_load.rb

17 lines
364 B
Ruby
Raw Normal View History

2018-05-15 18:29:27 +02:00
require_relative "helper"
module SlotMachine
2018-05-16 11:35:44 +02:00
class TestSlotLoadBasics < MiniTest::Test
def setup
Parfait.boot!({})
end
2018-05-16 11:35:44 +02:00
def test_ins_ok
assert SlotLoad.new("test", [:message, :caller] , [:message , :receiver,:type] )
2018-05-16 11:35:44 +02:00
end
def test_ins_fail1
assert_raises {SlotLoad.new( "test",[:message, :caller] , nil )}
2018-05-16 11:35:44 +02:00
end
end
2018-05-15 18:29:27 +02:00
end