RSpec::Matchers::BuiltIn::BaseMatcher
# File lib/rspec/matchers/built_in/be_instance_of.rb, line 9 def description "be an instance of #{expected}" end
# File lib/rspec/matchers/built_in/be_instance_of.rb, line 5 def match(expected, actual) actual.instance_of? expected end