2012-06-23 06:19:03 +08: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 '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|
|
2014-03-31 12:18:40 +08:00
|
|
|
config.include FactoryGirl::Syntax::Methods
|
2012-06-23 12:07:24 +08:00
|
|
|
config.before :each do
|
|
|
|
DatabaseCleaner.strategy = :truncation
|
|
|
|
DatabaseCleaner.start
|
|
|
|
end
|
|
|
|
|
2014-03-31 14:45:36 +08:00
|
|
|
config.after :each do
|
2012-06-23 12:07:24 +08:00
|
|
|
DatabaseCleaner.clean
|
2012-06-23 06:19:03 +08:00
|
|
|
end
|
2012-06-23 12:07:24 +08:00
|
|
|
|
|
|
|
config.mock_with :rspec
|
2012-06-23 06:19:03 +08:00
|
|
|
config.infer_base_class_for_anonymous_controllers = false
|
|
|
|
end
|