rubyx/test/slot_machine/test_slot.rb

31 lines
656 B
Ruby
Raw Normal View History

2020-02-17 08:27:42 +01:00
require_relative "helper"
module SlotMachine
class TestSlot < MiniTest::Test
def slot(slot = :caller , nekst = nil)
sl = Slot.new(slot)
sl.set_next( Slot.new(nekst)) if nekst
sl
end
def test_name
assert_equal :caller , slot.name
end
def test_length
assert_equal 1 , slot.length
end
def test_length2
assert_equal 2 , slot(:caller , :next).length
end
def test_to_s
assert_equal "caller" , slot.to_s
end
def test_to_s2
assert_equal "caller.next" , slot(:caller , :next).to_s
end
def test_create_fail_none
assert_raises {slot(nil)}
end
end
end