class RSpec::Matchers::BuiltIn::BeAnInstanceOf
def description
def description "be an instance of #{expected}" end
def match(expected, actual)
def match(expected, actual) actual.instance_of? expected end
def description "be an instance of #{expected}" end
def match(expected, actual) actual.instance_of? expected end