From eac8b9cf050f4557e5cd239af04546de045198e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Strza=C5=82kowski?= Date: Mon, 9 Aug 2010 22:15:44 +0200 Subject: Removed tests for setting default value of *path in route If we want to have this - we have to change Rack::Mount source --- actionpack/test/controller/routing_test.rb | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'actionpack') 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)) -- cgit v1.2.3