rubyx/test/vool/test_variables.rb
Torsten Ruger 16a55d9f95 include same directory helpers
(not one above as falsely was)
2017-04-02 19:13:14 +03:00

15 lines
370 B
Ruby

require_relative "helper"
module Vool
class TestVariables < MiniTest::Test
# "free standing" local can not be tested as it will result in send
# in other words ther is no way of knowing if a name is variable or method
# def test_send_to_local
# lst = Compiler.compile( "foo.bar")
# assert_equal SendStatement , lst.class
# end
end
end