rubyx/test/mom/blocks/test_block_assign.rb

21 lines
465 B
Ruby
Raw Normal View History

require_relative "../helper"
module Risc
class TestBlockAssign < MiniTest::Test
include Statements
def setup
@input = as_block("a = 5")
2019-08-23 09:21:22 +02:00
@expect = [LoadConstant, RegToSlot]
end
def test_send_instructions
assert_nil msg = check_nil(:main_block) , msg
end
def test_load_5
produced = produce_block.next
assert_load( produced , Parfait::Integer)
assert_equal 5 , produced.constant.value
end
end
end