osem-fcy/spec/support/factory_bot.rb

21 lines
428 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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
FactoryBot.lint
2017-06-14 02:46:39 +05:30
ensure
DatabaseCleaner.clean
end
end
end
end