diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 411a28d8ee..d32d708b35 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -52,6 +52,8 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest match 'global/:action' end + match "/local/:action", :controller => "local" + constraints(:ip => /192\.168\.1\.\d\d\d/) do get 'admin' => "queenbee#index" end @@ -415,6 +417,13 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest end end + def test_local + with_test_routes do + get '/local/dashboard' + assert_equal 'local#dashboard', @response.body + end + end + def test_projects with_test_routes do get '/projects' |