mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
9 lines
230 B
Ruby
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
|