Class: RSpec::Mocks::ArgumentMatchers::InstanceOf Private
Do not use. This class is for internal use only.
Relationships & Source Files | |
Inherits: | Object |
Defined in: | rspec-mocks/lib/rspec/mocks/argument_matchers.rb |
Class Method Summary
- .new(klass) ⇒ InstanceOf constructor Internal use only
Instance Method Summary
- #===(actual) Internal use only
- #description Internal use only
Instance Method Details
#===(actual)
[ GitHub ]# File 'rspec-mocks/lib/rspec/mocks/argument_matchers.rb', line 326
def ===(actual) actual.instance_of?(@klass) end
#description
[ GitHub ]# File 'rspec-mocks/lib/rspec/mocks/argument_matchers.rb', line 330
def description "an_instance_of(#{@klass.name})" end