rubyx/test/vool/test_assignment_statement.rb

17 lines
321 B
Ruby
Raw Normal View History

2017-04-02 11:59:07 +02:00
require_relative "../helper"
module Vool
class TestAssignment < MiniTest::Test
def test_local
lst = Compiler.compile( "foo = bar")
assert_equal LocalAssignment , lst.class
end
def test_local_name
lst = Compiler.compile( "foo = bar")
assert_equal :foo , lst.name
end
end
end