2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
if $".include?(File.expand_path('spec_helper.rb', __dir__))
|
|
|
|
# There's no need to load anything here if spec_helper is already loaded
|
|
|
|
# because spec_helper is more extensive than fast_spec_helper
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
require_relative '../config/bundler_setup'
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
ENV['GITLAB_ENV'] = 'test'
|
|
|
|
ENV['IN_MEMORY_APPLICATION_SETTINGS'] = 'true'
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
# Enable zero monkey patching mode before loading any other RSpec code.
|
|
|
|
RSpec.configure(&:disable_monkey_patching!)
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
require 'active_support/dependencies'
|
2019-10-12 21:52:04 +05:30
|
|
|
require_relative '../config/initializers/0_inject_enterprise_edition_module'
|
2018-10-15 14:42:47 +05:30
|
|
|
require_relative '../config/settings'
|
|
|
|
require_relative 'support/rspec'
|
2018-11-08 19:23:39 +05:30
|
|
|
require 'active_support/all'
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
require_relative 'simplecov_env'
|
|
|
|
SimpleCovEnv.start!
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
unless ActiveSupport::Dependencies.autoload_paths.frozen?
|
|
|
|
ActiveSupport::Dependencies.autoload_paths << 'lib'
|
|
|
|
ActiveSupport::Dependencies.autoload_paths << 'ee/lib'
|
|
|
|
ActiveSupport::Dependencies.autoload_paths << 'jh/lib'
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
ActiveSupport::XmlMini.backend = 'Nokogiri'
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2022-07-23 23:45:48 +05:30
|
|
|
# Makes diffs show entire non-truncated values.
|
|
|
|
config.before(:each, unlimited_max_formatted_output_length: true) do |_example|
|
|
|
|
config.expect_with :rspec do |c|
|
|
|
|
c.max_formatted_output_length = nil
|
|
|
|
end
|
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
end
|