class RSpec::Matchers::BuiltIn::BeAnInstanceOf
Public Instance Methods
description()
click to toggle source
# File lib/rspec/matchers/built_in/be_instance_of.rb, line 9 def description "be an instance of #{expected}" end
match(expected, actual)
click to toggle source
# File lib/rspec/matchers/built_in/be_instance_of.rb, line 5 def match(expected, actual) actual.instance_of? expected end