aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2005-07-08 08:56:24 +0000
committerNicholas Seckar <nseckar@gmail.com>2005-07-08 08:56:24 +0000
commitc18961f185cb593873b72d1ffa67c640b2cd126f (patch)
tree08c40dabc2ceb97c2d331db4f37fb0ca0164b4bf /actionpack/test/controller
parent4a3ec21b6261374ad58f3bc337fc8a547b6c490d (diff)
downloadrails-c18961f185cb593873b72d1ffa67c640b2cd126f.tar.gz
rails-c18961f185cb593873b72d1ffa67c640b2cd126f.tar.bz2
rails-c18961f185cb593873b72d1ffa67c640b2cd126f.zip
Routes now raise an exception if a path component is misconfigured.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1769 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/routing_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index c68b1f70d3..3bc240b44d 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -711,6 +711,20 @@ class RouteSetTests < Test::Unit::TestCase
assert_equal [], results['path']
end
+ def test_paths_do_not_accept_defaults
+ assert_raises(ActionController::RoutingError) do
+ rs.draw do |map|
+ rs.path 'file/*path', :controller => 'content', :action => 'show_file', :path => %w(fake default)
+ rs.connect ':controller/:action/:id'
+ end
+ end
+
+ rs.draw do |map|
+ rs.path 'file/*path', :controller => 'content', :action => 'show_file', :path => []
+ rs.connect ':controller/:action/:id'
+ end
+ end
+
def test_backwards
rs.draw do |map|
rs.connect 'page/:id/:action', :controller => 'pages', :action => 'show'