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.
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
config.mock_with :rspec
|
|
|
|
|
2012-02-25 16:24:45 +00:00
|
|
|
config.use_transactional_fixtures = true
|
2011-11-21 21:36:42 +00:00
|
|
|
|
|
|
|
config.infer_base_class_for_anonymous_controllers = false
|
|
|
|
end
|