require_relative "helper" # Please read note in test_parser require_relative 'helper' class TestAst < MiniTest::Test def setup @parser = Parser::Composed.new @transform = Parser::Transform.new end def check syntax = @parser.parse(@string_input) tree = @transform.apply(syntax) # puts tree.inspect assert_equal @transform_output , tree end def test_function_definition @string_input = <