be10e8c6af
for statement tests and write mom tests also implement to_mom and fix local (self) bug
27 lines
570 B
Ruby
27 lines
570 B
Ruby
require_relative "helper"
|
|
|
|
module Vool
|
|
class TestAssignment < MiniTest::Test
|
|
|
|
def test_local
|
|
lst = RubyCompiler.compile( "foo = bar")
|
|
assert_equal LocalAssignment , lst.class
|
|
end
|
|
def test_local_name
|
|
lst = RubyCompiler.compile( "foo = bar")
|
|
assert_equal :foo , lst.name
|
|
end
|
|
|
|
def test_instance
|
|
lst = RubyCompiler.compile( "@foo = bar")
|
|
assert_equal IvarAssignment , lst.class
|
|
end
|
|
def test_instance_name
|
|
lst = RubyCompiler.compile( "@foo = bar")
|
|
assert_equal :foo , lst.name
|
|
end
|
|
|
|
|
|
end
|
|
end
|