diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2010-08-09 22:15:44 +0200 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2010-09-05 13:44:38 +0200 |
commit | eac8b9cf050f4557e5cd239af04546de045198e8 (patch) | |
tree | 5521e2746a731d26e6e65dcfed520b156874c0dc | |
parent | b478ff91502fe183027e72d75f398de775e10678 (diff) | |
download | rails-eac8b9cf050f4557e5cd239af04546de045198e8.tar.gz rails-eac8b9cf050f4557e5cd239af04546de045198e8.tar.bz2 rails-eac8b9cf050f4557e5cd239af04546de045198e8.zip |
Removed tests for setting default value of *path in route
If we want to have this - we have to change Rack::Mount source
-rw-r--r-- | actionpack/test/controller/routing_test.rb | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index d9133c5bc5..c396508b49 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -330,20 +330,6 @@ class LegacyRouteSetTests < Test::Unit::TestCase assert_raise(ActionController::RoutingError) { rs.recognize_path("/not_a/show/10") } end - def test_paths_do_not_accept_defaults - assert_raise(ActionController::RoutingError) do - rs.draw do - match 'file/*path' => 'content#show_file', :path => %w(fake default), :as => 'path' - match ':controller/:action/:id' - end - end - - rs.draw do - match 'file/*path', :to => 'content#show_file', :path => [], :as => 'path' - match ':controller/:action/:id' - end - end - def test_should_list_options_diff_when_routing_constraints_dont_match rs.draw do match 'post/:id' => 'post#show', :constraints => { :id => /\d+/ }, :as => 'post' @@ -1614,17 +1600,6 @@ class RackMountIntegrationTests < ActiveSupport::TestCase @routes.draw(&Mapping) end - def test_add_route - @routes.clear! - - assert_raise(ActionController::RoutingError) do - @routes.draw do - match 'file/*path' => 'content#show_file', :path => %w(fake default), :as => :path - match ':controller(/:action(/:id))' - end - end - end - def test_recognize_path assert_equal({:controller => 'admin/users', :action => 'index'}, @routes.recognize_path('/admin/users', :method => :get)) assert_equal({:controller => 'admin/users', :action => 'create'}, @routes.recognize_path('/admin/users', :method => :post)) |