16a55d9f95
(not one above as falsely was)
15 lines
370 B
Ruby
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
|