osem-fcy/spec/support/factory_girl.rb

19 lines
398 B
Ruby
Raw Normal View History

require_relative 'external_request'
RSpec.configure do |config|
config.before(:suite) do
if ENV['OSEM_FACTORY_LINT'] != 'false'
2017-06-14 02:46:39 +05:30
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
begin
DatabaseCleaner.start
mock_commercial_request
FactoryGirl.lint
ensure
DatabaseCleaner.clean
end
end
end
end