14 lines
195 B
Ruby
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
|