Class: RSpec::Support::ObjectFormatter::DelegatorInspector Private
- Inherits:
-
BaseInspector
- Object
- Struct
- BaseInspector
- RSpec::Support::ObjectFormatter::DelegatorInspector
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-support-3.12.0/lib/rspec/support/object_formatter.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from BaseInspector
Class Method Summary collapse
- .can_inspect?(object) ⇒ Boolean private
Instance Method Summary collapse
- #inspect ⇒ Object private
Methods inherited from BaseInspector
Methods inherited from Struct
Class Method Details
.can_inspect?(object) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
223 224 225 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-support-3.12.0/lib/rspec/support/object_formatter.rb', line 223 def self.can_inspect?(object) defined?(Delegator) && Delegator === object end |
Instance Method Details
#inspect ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
227 228 229 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-support-3.12.0/lib/rspec/support/object_formatter.rb', line 227 def inspect "#<#{object.class}(#{formatter.format(object.send(:__getobj__))})>" end |