rubyx/test/vool/to_mom/test_local.rb

35 lines
819 B
Ruby
Raw Normal View History

require_relative "helper"
module Vool
class TestLocalMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
2017-04-13 13:14:43 +02:00
@stats = compile_first_method( "a = 5")
end
def test_class_compiles
2017-04-13 13:14:43 +02:00
assert_equal Mom::SlotConstant , @stats.first.class , @stats
2017-04-12 13:45:02 +02:00
end
def test_slot_is_set
2017-04-13 13:14:43 +02:00
assert @stats.first.left
2017-04-12 13:45:02 +02:00
end
def test_slot_starts_at_message
2017-04-13 13:14:43 +02:00
assert_equal :message , @stats.first.left[0]
2017-04-12 13:45:02 +02:00
end
2017-04-14 09:52:23 +02:00
def test_slot_gets_frame
2017-04-13 13:14:43 +02:00
assert_equal :frame , @stats.first.left[1]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_to_local
2017-04-13 13:14:43 +02:00
assert_equal :a , @stats.first.left[-1]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_something
2017-04-13 13:14:43 +02:00
assert @stats.first.right
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_int
2017-04-13 13:14:43 +02:00
assert_equal IntegerStatement , @stats.first.right.class
end
end
end