method

count_description

rails latest stable - Class: ActionController::Assertions::SelectorAssertions

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

count_description(min, max)
public

No documentation available.

# File actionpack/lib/action_controller/assertions/selector_assertions.rb, line 325
      def count_description(min, max) #:nodoc:
        pluralize = lambda {|word, quantity| word << (quantity == 1 ? '' : 's')}

        if min && max && (max != min)
          "between #{min} and #{max} elements"
        elsif min && !(min == 1 && max == 1)
          "at least #{min} #{pluralize['element', min]}"
        elsif max
          "at most #{max} #{pluralize['element', max]}"
        end
      end