rubyx/test/vool/ruby_compiler/test_local.rb
Torsten Ruger 9ddcb3224c rename
2018-03-15 11:32:32 +05:30

21 lines
446 B
Ruby

require_relative "helper"
module Vool
class TestLocal < 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_local_const
lst = RubyCompiler.compile( "foo = 5")
assert_equal LocalAssignment , lst.class
end
end
end