module RSpec::Rails::ControllerExampleGroup
def method_missing(method, *args, &block)
If method is a named_route, delegates to the RouteSet associated with
def method_missing(method, *args, &block) if route_available?(method) controller.send(method, *args, &block) else super end end