fixed test name
This commit is contained in:
67
test/vool/to_mom/test_assign.rb
Normal file
67
test/vool/to_mom/test_assign.rb
Normal file
@ -0,0 +1,67 @@
|
||||
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
|
Reference in New Issue
Block a user