rubyx/test/mom/test_local_assignment.rb
Torsten Ruger 16c8fcbf66 first local assignment risc test
comes with casualties
slot_load needs more work
2018-03-17 11:13:44 +05:30

28 lines
537 B
Ruby

require_relative 'helper'
module Risc
class TestLocalAssign < MiniTest::Test
include Statements
def setup
super
@input = "r = 5"
@expect = [LoadConstant, RegToSlot]
end
def test_local_assign_instructions
assert_nil msg = check_nil , msg
end
def test_constant_load
produced = produce_body
assert_equal 5 , produced.constant.value
end
def test_slot_move
produced = produce_body
assert_equal produced.next.register , produced.register
end
end
end