class Mail::Matchers::HasSentEmailMatcher

def matches_on_having_attachments?(delivery)

def matches_on_having_attachments?(delivery)
  @having_attachments && delivery.attachments.any? ||
    (!@having_attachments && delivery.attachments.none?)
end