rubyx/test/vool/test_local_assignment.rb

39 lines
951 B
Ruby
Raw Normal View History

require_relative "helper"
module Vool
class TestLocalMom < MiniTest::Test
include VoolCompile
def setup
2019-02-08 22:03:23 +01:00
Parfait.boot!(Parfait.default_test_options)
@compiler = compile_first_method( "a = 5")
@ins = @compiler.mom_instructions.next
end
def test_compiles_not_array
2018-03-15 16:26:27 +01:00
assert Array != @ins.class , @ins
end
def test_class_compiles
2018-03-15 16:26:27 +01:00
assert_equal Mom::SlotLoad , @ins.class , @ins
2017-04-12 13:45:02 +02:00
end
def test_slot_is_set
2018-03-15 16:26:27 +01:00
assert @ins.left
2017-04-12 13:45:02 +02:00
end
def test_slot_starts_at_message
2018-03-15 16:26:27 +01:00
assert_equal :message , @ins.left.known_object
2017-04-12 13:45:02 +02:00
end
2017-04-14 09:52:23 +02:00
def test_slot_gets_frame
2018-03-15 16:26:27 +01:00
assert_equal :frame , @ins.left.slots[0]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_to_local
2018-03-15 16:26:27 +01:00
assert_equal :a , @ins.left.slots[-1]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_something
2018-03-15 16:26:27 +01:00
assert @ins.right
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_int
assert_equal Mom::IntegerConstant , @ins.right.known_object.class
end
end
end