method

method_missing

method_missing(selector, *args)
private

No documentation available.

# File actionpack/lib/action_view/test_case.rb, line 215
      def method_missing(selector, *args)
        if @controller.respond_to?(:_routes) &&
        @controller._routes.named_routes.helpers.include?(selector)
          @controller.__send__(selector, *args)
        else
          super
        end
      end