# frozen_string_literal: true lib_path = "#{File.expand_path(__dir__)}/lib" $LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path) require 'pry' if ENV.key?('DEBUG') require 'specimen' require 'rspec' World RSpec::Expectations, RSpec::Matchers BeforeAll do Specimen.run_testrunner_hooks! end Before do @enc_config = Specimen.enc_config end at_exit do p 'bye bye' end