rubyx/test/slot_language/test_slot_maker.rb

15 lines
248 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
2020-02-12 15:41:16 +07:00
@maker.to_slot(@compiler)
2019-10-04 21:06:22 +03:00
end
end
end