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,26 @@
require_relative "helper"
module Ruby
class TestLocalAssignment < 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_local_const
lst = compile( "foo = 5")
assert_equal LocalAssignment , lst.class
end
def test_local_ivar
lst = compile( "foo = @iv")
assert_equal LocalAssignment , lst.class
assert_equal InstanceVariable , lst.value.class
end
end
end