module RSpec::Rails::ControllerExampleGroup::InstanceMethods

def method_missing(method, *args, &block)

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