Class: RSpec::Core::Notifications::DeprecationNotification

Inherits:
Struct
  • Object
show all
Defined in:
lib/rspec/core/notifications.rb

Overview

The DeprecationNotification is issued by the reporter when a deprecated part of RSpec is encountered. It represents information about the deprecated call site.

Instance Attribute Summary (collapse)

Instance Attribute Details

- (String) call_site

An optional call site from which the deprecation was issued

Returns:

  • (String)

    the current value of call_site

527
528
529
# File 'lib/rspec/core/notifications.rb', line 527
def call_site
  @call_site
end

- (String) deprecated

A custom message about the deprecation (alias of message)

Returns:

  • (String)

    the current value of deprecated

527
528
529
# File 'lib/rspec/core/notifications.rb', line 527
def deprecated
  @deprecated
end

- (String) message

A custom message about the deprecation

Returns:

  • (String)

    the current value of message

527
528
529
# File 'lib/rspec/core/notifications.rb', line 527
def message
  @message
end

- (String) replacement

An optional replacement for the deprecation

Returns:

  • (String)

    the current value of replacement

527
528
529
# File 'lib/rspec/core/notifications.rb', line 527
def replacement
  @replacement
end