From 2ea1e02d8a352d70fe50909e14b18074b62f9340 Mon Sep 17 00:00:00 2001 From: Justin Collins Date: Tue, 4 Sep 2012 16:15:33 -0700 Subject: [PATCH] Add test for route namespace with no block arg --- test/apps/rails2/config/routes.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/apps/rails2/config/routes.rb b/test/apps/rails2/config/routes.rb index b655e58f..1d3c0e58 100644 --- a/test/apps/rails2/config/routes.rb +++ b/test/apps/rails2/config/routes.rb @@ -9,9 +9,9 @@ ActionController::Routing::Routes.draw do |map| map.resource :users - map.resources :stuff do |r| - end + map.resources :stuff do |r|; end + namespace :without_block_arg do;end # The priority is based upon order of creation: first created -> highest priority. # Sample of regular route: -- GitLab