mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: VERSION app/controllers/admin/application_settings_controller.rb app/controllers/omniauth_callbacks_controller.rb app/controllers/projects/project_members_controller.rb app/helpers/application_settings_helper.rb app/models/user.rb app/services/files/base_service.rb app/views/profiles/accounts/show.html.haml db/schema.rb doc/install/installation.md doc/update/6.x-or-7.x-to-7.11.md doc/workflow/README.md lib/gitlab/markdown/external_issue_reference_filter.rb lib/gitlab/reference_extractor.rb lib/gitlab/upgrader.rb
34 lines
681 B
Ruby
34 lines
681 B
Ruby
if ENV['SIMPLECOV']
|
|
require 'simplecov'
|
|
end
|
|
|
|
if ENV['COVERALLS']
|
|
require 'coveralls'
|
|
Coveralls.wear_merged!
|
|
end
|
|
|
|
ENV['RAILS_ENV'] = 'test'
|
|
require './config/environment'
|
|
require 'rspec/expectations'
|
|
require 'sidekiq/testing/inline'
|
|
|
|
require_relative 'capybara'
|
|
require_relative 'db_cleaner'
|
|
|
|
%w(select2_helper test_env repo_helpers license).each do |f|
|
|
require Rails.root.join('spec', 'support', f)
|
|
end
|
|
|
|
Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file }
|
|
|
|
WebMock.allow_net_connect!
|
|
|
|
Spinach.hooks.before_run do
|
|
include RSpec::Mocks::ExampleMethods
|
|
|
|
TestEnv.init(mailer: false)
|
|
TestLicense.init
|
|
|
|
include FactoryGirl::Syntax::Methods
|
|
end
|