rubyx/test/vool/to_mom/test_assign.rb
2017-08-29 19:31:42 +03:00

68 lines
1.7 KiB
Ruby

require_relative "helper"
module Vool
class TestAssignMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
@stats = compile_first_method( "arg = 5")
end
def test_class_compiles
assert_equal Mom::SlotConstant , @stats.first.class , @stats
end
def test_slot_is_set
assert @stats.first.left
end
def test_slot_starts_at_message
assert_equal :message , @stats.first.left[0]
end
def test_slot_gets_self
assert_equal :arguments , @stats.first.left[1]
end
def test_slot_assigns_to_local
assert_equal :arg , @stats.first.left[-1]
end
def test_slot_assigns_something
assert @stats.first.right
end
def test_slot_assigns_int
assert_equal IntegerStatement , @stats.first.right.class
end
end
#compiling to an argument should result in different second parameter in the slot array
class TestArgMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
@stats = compile_first_method( "arg = 5")
end
def test_class_compiles
assert_equal Mom::SlotConstant , @stats.first.class , @stats
end
def test_slot_is_set
assert @stats.first.left
end
def test_slot_starts_at_message
assert_equal :message , @stats.first.left[0]
end
def test_slot_gets_self
assert_equal :arguments , @stats.first.left[1]
end
def test_slot_assigns_to_local
assert_equal :arg , @stats.first.left[-1]
end
def test_slot_assigns_something
assert @stats.first.right
end
def test_slot_assigns_int
assert_equal IntegerStatement , @stats.first.right.class
end
end
end