module RSpec::Rails::ControllerExampleGroup

def route_available?(method)

def route_available?(method)
  (defined?(@routes) && route_defined?(routes, method)) ||
    (defined?(@orig_routes) && route_defined?(@orig_routes, method))
end