2017-04-12 10:53:02 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-04-12 19:18:41 +02:00
|
|
|
class TestLocalMom < MiniTest::Test
|
2017-04-12 19:29:45 +02:00
|
|
|
include MomCompile
|
2017-04-12 10:53:02 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
2017-04-13 13:14:43 +02:00
|
|
|
@stats = compile_first_method( "a = 5")
|
2017-04-12 10:53:02 +02:00
|
|
|
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
|
|
|
|
def test_slot_gets_self
|
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
|
2017-04-12 10:53:02 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|