2017-04-02 18:13:14 +02:00
|
|
|
require_relative "helper"
|
2017-04-02 12:24:09 +02:00
|
|
|
|
|
|
|
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
|
2017-04-02 17:25:30 +02:00
|
|
|
# def test_send_to_local
|
|
|
|
# lst = Compiler.compile( "foo.bar")
|
|
|
|
# assert_equal SendStatement , lst.class
|
|
|
|
# end
|
2017-04-02 12:24:09 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|