module RSpec::Core::Deprecation
def deprecate(deprecated, data = {})
- Private: -
def deprecate(deprecated, data = {}) RSpec.configuration.reporter.deprecation( { :deprecated => deprecated, :call_site => CallerFilter.first_non_rspec_line }.merge(data) ) end
def warn_deprecation(message)
- Private: -
def warn_deprecation(message) RSpec.configuration.reporter.deprecation :message => message end