$LOAD_PATH.unshift File.expand_path('..', __FILE__) $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'rspec' require 'rack/test' require 'faker' require 'auth0' Dir[('./lib/**/*.rb')].each { |f| require f } Dir[('./spec/support/**/*.rb')].each { |f| require f } RSpec.configure do |config| config.include Rack::Test::Methods config.fail_fast = true end