2012-08-23 13:24:25 +02:00
|
|
|
unless ENV['CI']
|
|
|
|
require 'simplecov'
|
|
|
|
SimpleCov.start 'rails'
|
|
|
|
end
|
2011-10-08 23:36:38 +02: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'
|
2011-12-14 17:38:52 +01:00
|
|
|
require 'webmock/rspec'
|
2012-05-14 20:05:32 +02:00
|
|
|
require 'email_spec'
|
2012-08-19 10:36:37 +02:00
|
|
|
require 'headless'
|
2011-10-08 23:36:38 +02: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}
|
|
|
|
|
2012-08-13 07:32:10 +02:00
|
|
|
# Use capybara-webkit
|
|
|
|
Capybara.javascript_driver = :webkit
|
|
|
|
|
2012-08-23 11:19:40 +02:00
|
|
|
WebMock.disable_net_connect!(allow_localhost: true)
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
RSpec.configure do |config|
|
|
|
|
config.mock_with :rspec
|
|
|
|
|
2012-08-23 11:19:40 +02:00
|
|
|
config.include LoginHelpers, type: :request
|
2012-08-28 23:04:06 +02:00
|
|
|
config.include GitoliteStub
|
2012-08-28 07:42:28 +02:00
|
|
|
config.include FactoryGirl::Syntax::Methods
|
2012-09-17 18:38:59 +02:00
|
|
|
config.include Devise::TestHelpers, type: :controller
|
2011-10-08 23:36:38 +02: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
|
|
|
|
|
2012-08-19 10:36:37 +02:00
|
|
|
config.before :all do
|
|
|
|
headless = Headless.new
|
|
|
|
headless.start
|
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
config.before do
|
2012-08-28 23:04:06 +02:00
|
|
|
stub_gitolite!
|
|
|
|
|
2012-08-13 07:32:10 +02:00
|
|
|
# !!! Observers disabled by default in tests
|
2012-08-23 11:19:40 +02:00
|
|
|
ActiveRecord::Base.observers.disable(:all)
|
|
|
|
# ActiveRecord::Base.observers.enable(:all)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|