# File lib/action_dispatch/testing/assertions/routing.rb, line 173
      def method_missing(selector, *args, &block)
        if @controller && @routes && @routes.named_routes.helpers.include?(selector)
          @controller.send(selector, *args, &block)
        else
          super
        end
      end