fix local assignment

was missing a method that got lost in copy/paste
also renaming to get guard to pick up tests
This commit is contained in:
Torsten Ruger
2018-07-20 14:16:29 +03:00
parent d14eca3e70
commit f4402ba30f
6 changed files with 6 additions and 5 deletions

View File

@ -0,0 +1,52 @@
require_relative "helper"
module Ruby
class TestAssignment < MiniTest::Test
include RubyTests
def test_local
lst = compile( "foo = bar")
assert_equal LocalAssignment , lst.class
end
def test_local_name
lst = compile( "foo = bar")
assert_equal :foo , lst.name
end
def test_instance
lst = compile( "@foo = bar")
assert_equal IvarAssignment , lst.class
end
def test_instance_name
lst = compile( "@foo = bar")
assert_equal :foo , lst.name
end
def test_const
lst = compile( "@foo = 5")
assert_equal IvarAssignment , lst.class
end
end
class TestAssignmentVool < MiniTest::Test
include RubyTests
def test_local
lst = compile( "foo = bar").to_vool
assert_equal Vool::LocalAssignment , lst.class
end
def test_local_name
lst = compile( "foo = bar").to_vool
assert_equal :foo , lst.name
end
def test_instance
lst = compile( "@foo = bar").to_vool
assert_equal Vool::IvarAssignment , lst.class
end
def test_instance_name
lst = compile( "@foo = bar").to_vool
assert_equal :foo , lst.name
end
def test_const
lst = compile( "@foo = 5").to_vool
assert_equal Vool::IvarAssignment , lst.class
end
end
end