48 lines
1.0 KiB
Ruby
48 lines
1.0 KiB
Ruby
if ENV['COVERAGE']
|
|
require 'simplecov'
|
|
SimpleCov.start 'rails' do
|
|
add_group "Decorators", "app/decorators"
|
|
end
|
|
end
|
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
|
|
require 'rspec/rails'
|
|
require 'rspec/autorun'
|
|
require 'capybara/rspec'
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
|
Dir[Rails.root.join("spec/shared/**/*.rb")].each { |f| require f }
|
|
|
|
RSpec.configure do |config|
|
|
config.mock_with :rspec
|
|
config.use_transactional_fixtures = false
|
|
config.infer_base_class_for_anonymous_controllers = false
|
|
|
|
config.include AsciiIo::ControllerMacros, :type => :controller
|
|
|
|
config.before(:suite) do
|
|
DatabaseCleaner.clean_with(:truncation)
|
|
end
|
|
|
|
config.before(:each) do
|
|
DatabaseCleaner.strategy = :transaction
|
|
end
|
|
|
|
config.before(:each, :js => true) do
|
|
DatabaseCleaner.strategy = :truncation
|
|
end
|
|
|
|
config.before(:each) do
|
|
DatabaseCleaner.start
|
|
end
|
|
|
|
config.after(:each) do
|
|
DatabaseCleaner.clean
|
|
end
|
|
end
|
|
|
|
GirlFriday::Queue.immediate!
|