Torsten
088017bc05
Object and Constant similarity are coming more into focus. Will unite after the merge
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
require_relative "helper"
|
|
|
|
module SlotMachine
|
|
|
|
class TestSlotConstant < MiniTest::Test
|
|
def setup
|
|
Parfait.boot!(Parfait.default_test_options)
|
|
compiler = Risc.test_compiler
|
|
@slotted = Slotted.for(StringConstant.new("hi") , nil)
|
|
register = @slotted.to_register(compiler , InstructionMock.new)
|
|
@instruction = compiler.risc_instructions.next
|
|
end
|
|
def test_def_class
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
end
|
|
def test_def_register
|
|
assert @instruction.register.is_object?
|
|
end
|
|
def test_def_const
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
end
|
|
end
|
|
class TestSlotConstantType < MiniTest::Test
|
|
def setup
|
|
Parfait.boot!(Parfait.default_test_options)
|
|
compiler = Risc.test_compiler
|
|
@slotted = Slotted.for(StringConstant.new("hi") , [:type])
|
|
register = @slotted.to_register(compiler , InstructionMock.new)
|
|
@instruction = compiler.risc_instructions.next
|
|
end
|
|
def test_def_class
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
end
|
|
def test_def_register
|
|
assert @instruction.register.is_object?
|
|
end
|
|
def test_def_const
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
end
|
|
def test_to_s
|
|
assert_equal "StringConstant.type" , @slotted.to_s
|
|
end
|
|
def test_def_register2
|
|
assert @instruction.next.register.is_object?
|
|
end
|
|
def test_def_next_index
|
|
assert_equal 0 , @instruction.next.index
|
|
end
|
|
end
|
|
end
|