2011-10-08 23:36:38 +02:00
|
|
|
require 'simplecov'
|
|
|
|
SimpleCov.start 'rails'
|
|
|
|
|
|
|
|
# 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 'capybara/dsl'
|
2011-12-14 17:38:52 +01:00
|
|
|
require 'webmock/rspec'
|
2011-10-08 23:36:38 +02:00
|
|
|
require 'factories'
|
|
|
|
require 'monkeypatch'
|
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
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
RSpec.configure do |config|
|
|
|
|
config.mock_with :rspec
|
|
|
|
|
|
|
|
config.include LoginMacros
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
config.before :each, type: :integration do
|
2011-10-08 23:36:38 +02:00
|
|
|
DeviseSessionMock.disable
|
|
|
|
end
|
|
|
|
|
|
|
|
config.before do
|
|
|
|
if example.metadata[:js]
|
|
|
|
DatabaseCleaner.strategy = :truncation
|
2011-11-16 15:57:37 +01:00
|
|
|
Capybara::Selenium::Driver::DEFAULT_OPTIONS[:resynchronize] = true
|
2011-10-08 23:36:38 +02:00
|
|
|
else
|
|
|
|
DatabaseCleaner.strategy = :transaction
|
|
|
|
end
|
|
|
|
|
|
|
|
DatabaseCleaner.start
|
2011-12-14 17:38:52 +01:00
|
|
|
|
|
|
|
WebMock.disable_net_connect!(allow_localhost: true)
|
2012-08-13 07:32:10 +02:00
|
|
|
|
|
|
|
# !!! Observers disabled by default in tests
|
|
|
|
#
|
|
|
|
# Use next code to enable observers
|
|
|
|
# before(:each) { ActiveRecord::Base.observers.enable(:all) }
|
|
|
|
#
|
2012-06-12 20:27:03 +02:00
|
|
|
ActiveRecord::Base.observers.disable :all
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
config.after do
|
|
|
|
DatabaseCleaner.clean
|
|
|
|
end
|
2012-06-27 13:32:56 +02:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
config.include RSpec::Rails::RequestExampleGroup, type: :request, example_group: {
|
|
|
|
file_path: /spec\/api/
|
2012-06-27 13:32:56 +02:00
|
|
|
}
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|