rubyx/test/mom/test_assignment.rb
Torsten Ruger 9c499c7a19 actually start doing something in to_mom
though still dummy
2017-04-12 11:53:02 +03:00

18 lines
281 B
Ruby

require_relative "helper"
module Mom
class TestAssignemnt < MiniTest::Test
include CompilerHelper
def setup
Risc.machine.boot
end
def compile_first input
lst = Vool::VoolCompiler.compile in_Space( input )
lst.to_mom( nil )
end
end
end