rubyx/test/ruby/helper.rb
2019-02-08 23:03:23 +02:00

18 lines
295 B
Ruby

require_relative "../helper"
module Ruby
module RubyTests
def setup
Parfait.boot!(Parfait.default_test_options)
end
def compile(input)
RubyCompiler.compile(input)
end
def ruby_to_vool(input)
FIXMERubyXCompiler.new(input).ruby_to_vool
end
end
end