class Shoulda::Matchers::ActionController::RouteMatcher

def normalize_path(path)

def normalize_path(path)
  if path.start_with?('/')
    path
  else
    "/#{path}"
  end
end