gitlab-org--gitlab-foss/spec/spec_helper.rb

48 lines
1.5 KiB
Ruby
Raw Normal View History

2013-01-07 20:22:35 +00:00
require 'simplecov' unless ENV['CI']
2011-10-08 21:36:38 +00:00
2013-03-10 18:26:27 +00:00
if ENV['TRAVIS']
require 'coveralls'
Coveralls.wear!
end
2013-01-09 06:14:05 +00:00
2011-10-08 21:36:38 +00:00
# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'capybara/rails'
require 'capybara/rspec'
require 'webmock/rspec'
require 'email_spec'
2013-01-09 06:14:05 +00:00
require 'sidekiq/testing/inline'
2013-02-21 09:27:22 +00:00
require 'capybara/poltergeist'
Capybara.javascript_driver = :poltergeist
Capybara.default_wait_time = 10
2011-10-08 21:36:38 +00:00
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
WebMock.disable_net_connect!(allow_localhost: true)
2011-10-08 21:36:38 +00:00
RSpec.configure do |config|
config.mock_with :rspec
2013-02-21 08:41:13 +00:00
config.include LoginHelpers, type: :feature
config.include LoginHelpers, type: :request
config.include FactoryGirl::Syntax::Methods
2012-09-17 16:38:59 +00:00
config.include Devise::TestHelpers, type: :controller
2011-10-08 21:36:38 +00:00
# If you're not using ActiveRecord, or you'd prefer not to run each of your
# examples within a transaction, remove the following line or assign false
# instead of true.
config.use_transactional_fixtures = false
config.before do
2012-11-21 04:14:05 +00:00
# Use tmp dir for FS manipulations
2013-01-02 17:46:06 +00:00
temp_repos_path = Rails.root.join('tmp', 'test-git-base-path')
2013-02-11 17:16:59 +00:00
Gitlab.config.gitlab_shell.stub(repos_path: temp_repos_path)
2013-01-02 17:46:06 +00:00
FileUtils.rm_rf temp_repos_path
FileUtils.mkdir_p temp_repos_path
2011-10-08 21:36:38 +00:00
end
end