mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
12 lines
362 B
Ruby
12 lines
362 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../../../spec/spec_helper'
|
|
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].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
|