Last active
August 6, 2018 06:53
-
-
Save vraravam/82ea00646ecfef96d2aa to your computer and use it in GitHub Desktop.
Configuration at project-level for factory_girl in a rails rspec codebase (spec/support/factory_girl.rb)
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
# frozen_string_literal: true | |
RSpec.configure do |config| | |
config.before(:suite) do | |
begin | |
DatabaseCleaner.start | |
setup_biz | |
FactoryBot.lint unless config.files_to_run.one? | |
ensure | |
DatabaseCleaner.clean | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment