14 lines
202 B
Ruby
Raw Normal View History

require_relative "../helper"
module Vool
module Norm
class NormTest < MiniTest::Test
def normalize(input)
2018-06-29 22:56:49 +03:00
RubyX::RubyCompiler.compile(input).normalize
end
end
end
end