# frozen_string_literal: true require File.expand_path('../test_helper.rb', File.dirname(__FILE__)) require 'ruby_parser' describe 'Using RipperRubyParser and RubyParser' do Dir.glob(File.expand_path('../samples/*.rb', File.dirname(__FILE__))).each do |file| it "gives the same result for #{file}" do program = File.read file program.must_be_parsed_as_before end end end