# File lib/rspec/rails/example/controller_example_group.rb, line 147
      def method_missing(method, *args, &block)
        if @orig_routes && @orig_routes.named_routes.helpers.include?(method)
          controller.send(method, *args, &block)
        else
          super
        end
      end