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

19 lines
450 B
Ruby
Raw Normal View History

require "active_support"
module SilenceDeprecation
def silence_deprecation(example)
cached_silenced = ActiveSupport::Deprecation.silenced
ActiveSupport::Deprecation.silenced = true
example.run
ActiveSupport::Deprecation.silenced = cached_silenced
end
end
RSpec.configure do |config|
config.include SilenceDeprecation
config.around :example, silence_deprecation: true do |example|
silence_deprecation(example)
end
end