1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# frozen_string_literal: true
ENV["RAILS_ENV"] = 'test' # rubocop: disable RSpec/EnvAssignment -- this was not set when running tests
require 'rspec/mocks'
require 'gitlab/rspec/all'
require 'gitlab/http_v2'
require 'gitlab/http_v2/configuration'
require 'gitlab/stub_requests'
require 'webmock/rspec'
RSpec.configure do |config|
config.include StubENV
config.include Gitlab::StubRequests
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
# Disable RSpec exposing methods globally on `Module` and `main`
config.disable_monkey_patching!
config.expect_with :rspec do |c|
c.syntax = :expect
end
end
Gitlab::HTTP_V2.configure do |config|
config.allowed_internal_uris = [
URI::HTTP.build(
scheme: 'http',
host: 'localhost',
port: '80'
),
URI::Generic.build(
scheme: 'ssh',
host: 'localhost',
port: '22'
)
]
config.log_exception_proc = ->(exception, extra_info) do
# no-op
end
config.silent_mode_log_info_proc = ->(message, http_method) do
# no-op
end
end
|