mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-08 22:56:06 +00:00
12 lines
367 B
Ruby
12 lines
367 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../../../spec/spec_helper'
|
|
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }
|
|
|
|
RSpec.configure do |config|
|
|
config.include AuthorizationHelper, type: :request
|
|
config.include DfcProvider::Engine.routes.url_helpers, type: :request
|
|
config.include Warden::Test::Helpers, type: :request
|
|
end
|