rubyx/test/slot_language/test_slot_maker.rb

15 lines
249 B
Ruby
Raw Normal View History

2019-10-04 20:06:22 +02:00
require_relative "helper"
module SlotLanguage
class TestSlotMaker < MiniTest::Test
2019-10-07 19:14:40 +02:00
include SlotToHelper
def setup
super
@maker = SlotMaker.new(:hi )
end
def test_slot
@maker.slot_def(@compiler)
2019-10-04 20:06:22 +02:00
end
end
end