2012-04-09 16:23:28 +00:00
|
|
|
require 'simplecov'
|
2012-04-09 18:07:34 +00:00
|
|
|
SimpleCov.start 'rails' do
|
|
|
|
add_group "Decorators", "app/decorators"
|
|
|
|
end
|
2012-04-09 16:23:28 +00:00
|
|
|
|
2011-11-21 21:36:42 +00:00
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
|
|
require 'rspec/rails'
|
|
|
|
require 'rspec/autorun'
|
|
|
|
|
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
2012-03-08 14:00:10 +00:00
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
2011-11-21 21:36:42 +00:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
config.mock_with :rspec
|
|
|
|
|
2012-02-25 16:24:45 +00:00
|
|
|
config.use_transactional_fixtures = true
|
2012-03-01 23:25:55 +00:00
|
|
|
config.include(ControllerMacros, :type => :controller)
|
2011-11-21 21:36:42 +00:00
|
|
|
|
|
|
|
config.infer_base_class_for_anonymous_controllers = false
|
|
|
|
end
|
2012-06-07 15:57:26 +00:00
|
|
|
|
|
|
|
GirlFriday::Queue.immediate!
|