2018-05-16 11:49:46 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Mom
|
|
|
|
|
|
|
|
class TestSlotDefinitionConstant < MiniTest::Test
|
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2018-07-16 10:46:18 +02:00
|
|
|
@compiler = Risc::FakeCompiler.new
|
2018-05-16 11:49:46 +02:00
|
|
|
@definition = SlotDefinition.new(StringConstant.new("hi") , [])
|
2018-08-19 11:56:44 +02:00
|
|
|
@register = @definition.to_register(@compiler , InstructionMock.new)
|
|
|
|
@instruction = @compiler.instructions.first
|
2018-05-16 11:49:46 +02:00
|
|
|
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
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
end
|