rubyx/test/vool/test_assignment_statement.rb
Torsten Ruger b9caad937a rename bools compiler to ruby_compiler
as that is what is does, compile ruby strings into vool st
2017-04-06 15:36:41 +03:00

26 lines
573 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 InstanceAssignment , lst.class
end
def test_instance_name
lst = RubyCompiler.compile( "@foo = bar")
assert_equal :foo , lst.name
end
end
end