rubyx/test/vool/statements/test_assignment_statement.rb
Torsten Ruger db8f99409b move vool statements into own directory
also tests for guard to work
2017-04-06 19:11:11 +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