gitlab-org--gitlab-foss/features/support/env.rb

37 lines
842 B
Ruby
Raw Normal View History

2016-06-30 18:33:12 -04:00
require_relative '../../spec/simplecov_env'
2016-06-30 13:04:00 -04:00
SimpleCov.start if ENV['SIMPLECOV']
2012-09-10 03:52:43 -04:00
ENV['RAILS_ENV'] = 'test'
require './config/environment'
require 'rspec/expectations'
2013-01-09 01:14:05 -05:00
require 'sidekiq/testing/inline'
require_relative 'capybara'
require_relative 'db_cleaner'
2016-03-09 08:12:08 -05:00
require_relative 'rerun'
2016-06-08 05:43:13 -04:00
if ENV['CI']
require 'knapsack'
Knapsack::Adapters::SpinachAdapter.bind
2016-06-08 05:43:13 -04:00
end
%w(select2_helper test_env repo_helpers).each do |f|
require Rails.root.join('spec', 'support', f)
end
Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file }
2012-09-10 11:35:03 -04:00
WebMock.allow_net_connect!
Spinach.hooks.before_run do
include RSpec::Mocks::ExampleMethods
RSpec::Mocks.setup
2014-07-31 12:24:53 -04:00
TestEnv.init(mailer: false)
2015-08-14 09:08:31 -04:00
# skip pre-receive hook check so we can use
# web editor and merge
TestEnv.disable_pre_receive
include FactoryGirl::Syntax::Methods
end