b9caad937a
as that is what is does, compile ruby strings into vool st
26 lines
573 B
Ruby
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
|