rubyx/test/mom/instruction/test_slot_definition1.rb

26 lines
676 B
Ruby
Raw Normal View History

require_relative "helper"
module Mom
class TestSlotDefinitionConstant < MiniTest::Test
def setup
Parfait.boot!
@compiler = CompilerMock.new
@definition = SlotDefinition.new(StringConstant.new("hi") , [])
@instruction = @definition.to_register(@compiler , InstructionMock.new)
end
def test_def_class
assert_equal Risc::LoadConstant , @instruction.class
end
def test_def_register
assert_equal :r1 , @instruction.register.symbol
end
def test_def_const
assert_equal "hi" , @instruction.constant.to_string
end
2018-06-16 20:01:15 +02:00
def test_to_s
assert_equal "[StringConstant]" , @definition.to_s
end
end
end