rubyx/test/vool/to_mom/test_local.rb

39 lines
907 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")
2017-09-04 20:32:01 +02:00
@first = @stats.first
end
def test_compiles_not_array
assert Array != @stats.class , @stats
end
def test_class_compiles
assert_equal Mom::SlotMove , @first.class , @stats
2017-04-12 13:45:02 +02:00
end
def test_slot_is_set
2017-09-04 20:32:01 +02:00
assert @first.left
2017-04-12 13:45:02 +02:00
end
def test_slot_starts_at_message
2017-09-04 20:32:01 +02:00
assert_equal :message , @first.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
2017-09-04 20:32:01 +02:00
assert_equal :frame , @first.left.slots[0]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_to_local
2017-09-04 20:32:01 +02:00
assert_equal :a , @first.left.slots[-1]
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_something
2017-09-04 20:32:01 +02:00
assert @first.right
2017-04-12 13:45:02 +02:00
end
def test_slot_assigns_int
2017-09-04 20:32:01 +02:00
assert_equal IntegerStatement , @first.right.class
end
end
end