SA for slot_to_reg
This commit is contained in:
18
test/risc/instructions/test_slot_to_reg.rb
Normal file
18
test/risc/instructions/test_slot_to_reg.rb
Normal file
@ -0,0 +1,18 @@
|
||||
require_relative "../helper"
|
||||
|
||||
module Risc
|
||||
class TestSlotToReg < MiniTest::Test
|
||||
def setup
|
||||
Parfait.boot!({})
|
||||
end
|
||||
def slot
|
||||
Risc.slot_to_reg("source" , Risc.message_named_reg , :type)
|
||||
end
|
||||
def test_slot
|
||||
assert_equal SlotToReg , slot.class
|
||||
end
|
||||
def test_slot_reg
|
||||
assert_equal :"message.type" , slot.register.symbol
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user