class RSpecHtmlMatchers::HaveTag

def description

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