mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
368 B
Ruby
11 lines
368 B
Ruby
RSpec.configure do |config|
|
|
# Tracker deprecation messages in each file
|
|
if ENV['DEPRECATION_TRACKER']
|
|
DeprecationTracker.track_rspec(
|
|
config,
|
|
shitlist_path: 'spec/support/deprecation_shitlist.json',
|
|
mode: ENV['DEPRECATION_TRACKER'],
|
|
transform_message: ->(message) { message.gsub("#{Rails.root}/", '') }
|
|
)
|
|
end
|
|
end
|