rubyx/test/vool/normalization/helper.rb
Torsten Ruger 672ccb351d fix argument hoisting
arguments in vool must be simple variables
finally did the hoisting to do that
2018-04-27 09:59:01 +03:00

14 lines
195 B
Ruby

require_relative "../helper"
module Vool
module Norm
class NormTest < MiniTest::Test
def normalize(input)
RubyCompiler.compile(input).normalize
end
end
end
end