Welcome to mirror list, hosted at ThFree Co, Russian Federation.

spec_helper.rb « spec « omniauth_crowd « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13683c95062596ea9751ec8fbf79230e7f4c246a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'bundler/setup'
Bundler.setup
require 'rack/test'
require 'webmock'
require 'webmock/rspec'
require 'nokogiri'

require 'omniauth_crowd'
RSpec.configure do |config|
  WebMock.disable_net_connect!
  config.include Rack::Test::Methods
  config.raise_errors_for_deprecations!
end