1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/support/macros/deprecation.rb

9 lines
230 B
Ruby

require "active_support"
RSpec.configure do |config|
config.around :example, silence_deprecation: true do |example|
with_temporary_assignment(FactoryBot::Deprecation, :silenced, true) do
example.run
end
end
end