2017-04-02 18:13:14 +02:00
|
|
|
require_relative "helper"
|
2017-04-01 15:27:32 +02:00
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestMethodStatement < MiniTest::Test
|
|
|
|
|
|
|
|
def setup
|
|
|
|
input = "def tryout(arg1, arg2) ; end "
|
|
|
|
@lst = Compiler.compile( input )
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_compile_method
|
|
|
|
assert_equal MethodStatement , @lst.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_compile_method_name
|
|
|
|
assert_equal :tryout , @lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_compile_method_super
|
|
|
|
assert_equal [:arg1, :arg2] , @lst.args
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_compile_method_body
|
|
|
|
assert_equal [] , @lst.body
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|