wblog/spec/spec_helper.rb

25 lines
712 B
Ruby
Raw Normal View History

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
config.before :each do
DatabaseCleaner.strategy = :truncation
DatabaseCleaner.start
end
config.after do
DatabaseCleaner.clean
2012-06-23 06:19:03 +08:00
end
config.mock_with :rspec
2012-06-23 06:19:03 +08:00
config.infer_base_class_for_anonymous_controllers = false
end