class RSpecHtmlMatchers::HaveTag

def description

def description
  # TODO: should it be more complicated?
  if options.key?(:count)
    format(DESCRIPTIONS[:have_n], options[:count], tag)
  else
    DESCRIPTIONS[:have_at_least_1] % tag
  end
end