rubyx/test/slot_language/test_slot_maker.rb

15 lines
249 B
Ruby
Raw Normal View History

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