-
-
Save stanislaw/1731259 to your computer and use it in GitHub Desktop.
Example rails 3.1 spec_helper.rb file using spork, rspec, factory_girl, database_cleaner, I18n
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spork' | |
Spork.prefork do | |
# Loading more in this block will cause your tests to run faster. However, | |
# if you change any configuration or code from libraries loaded here, you'll | |
# need to restart spork for it take effect. | |
# 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' | |
require 'shoulda/matchers/integrations/rspec' | |
require "rails/application" | |
Spork.trap_method(Rails::Application::RoutesReloader, :reload!) | |
# 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 | |
require 'database_cleaner' | |
config.before(:suite) do | |
DatabaseCleaner.strategy = :transaction | |
DatabaseCleaner.clean_with(:truncation) | |
end | |
config.before(:each) do | |
DatabaseCleaner.start | |
end | |
config.after(:each) do | |
DatabaseCleaner.clean | |
end | |
end | |
end | |
Spork.each_run do | |
I18n.backend.reload! | |
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f } | |
require 'factory_girl' | |
FactoryGirl.definition_file_paths = [ | |
File.join(Rails.root, 'spec', 'factories') | |
] | |
FactoryGirl.find_definitions | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment