always list of methods in class

improve vool test dirs
This commit is contained in:
Torsten Ruger
2018-06-30 10:08:18 +03:00
parent 46d8f5002f
commit 4a7cc72732
21 changed files with 7 additions and 10 deletions

37
test/vool/test_local.rb Normal file
View File

@@ -0,0 +1,37 @@
require_relative "helper"
module Vool
class TestLocalMom < MiniTest::Test
include MomCompile
def setup
Parfait.boot!
@ins = compile_first_method( "a = 5")
end
def test_compiles_not_array
assert Array != @ins.class , @ins
end
def test_class_compiles
assert_equal Mom::SlotLoad , @ins.class , @ins
end
def test_slot_is_set
assert @ins.left
end
def test_slot_starts_at_message
assert_equal :message , @ins.left.known_object
end
def test_slot_gets_frame
assert_equal :frame , @ins.left.slots[0]
end
def test_slot_assigns_to_local
assert_equal :a , @ins.left.slots[-1]
end
def test_slot_assigns_something
assert @ins.right
end
def test_slot_assigns_int
assert_equal Mom::IntegerConstant , @ins.right.known_object.class
end
end
end