2017-04-10 15:12:15 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Mom
|
|
|
|
class TestAssignemnt < MiniTest::Test
|
|
|
|
include CompilerHelper
|
|
|
|
|
2017-04-12 10:53:02 +02:00
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
2017-04-10 15:12:15 +02:00
|
|
|
end
|
2017-04-12 10:53:02 +02:00
|
|
|
|
|
|
|
def compile_first input
|
|
|
|
lst = Vool::VoolCompiler.compile in_Space( input )
|
|
|
|
lst.to_mom( nil )
|
|
|
|
end
|
|
|
|
|
2017-04-10 15:12:15 +02:00
|
|
|
end
|
|
|
|
end
|