aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_test.rb
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2006-04-21 20:15:53 +0000
committerJamis Buck <jamis@37signals.com>2006-04-21 20:15:53 +0000
commite75d27f405d755c1dda42f4c757ac4ac0cfaca4f (patch)
treedabbddbcfc2626b75cc6bb2168f7ed69fb9585fc /actionpack/test/controller/routing_test.rb
parent0a0b5bd7220883b0517972c2c2b0f808647d22fc (diff)
downloadrails-e75d27f405d755c1dda42f4c757ac4ac0cfaca4f.tar.gz
rails-e75d27f405d755c1dda42f4c757ac4ac0cfaca4f.tar.bz2
rails-e75d27f405d755c1dda42f4c757ac4ac0cfaca4f.zip
restore some commented lines
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4245 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller/routing_test.rb')
-rw-r--r--actionpack/test/controller/routing_test.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index 1562261735..136a3dc8e6 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -1003,23 +1003,23 @@ class RouteSetTests < Test::Unit::TestCase
Object.const_set(:SubpathBooksController, Class.new(ActionController::Base))
rs.draw do |r|
- #r.connect '/books/:id;edit', :controller => 'subpath_books', :action => 'edit'
- #r.connect '/items/:id;:action', :controller => 'subpath_books'
+ r.connect '/books/:id;edit', :controller => 'subpath_books', :action => 'edit'
+ r.connect '/items/:id;:action', :controller => 'subpath_books'
r.connect '/posts/new;:action', :controller => 'subpath_books'
r.connect '/posts/:id', :controller => 'subpath_books', :action => "show"
end
- # hash = rs.recognize_path %w(books 17;edit)
- # assert_not_nil hash
- # assert_equal %w(subpath_books 17 edit), [hash["controller"].controller_name, hash["id"], hash["action"]]
- #
- # hash = rs.recognize_path %w(items 3;complete)
- # assert_not_nil hash
- # assert_equal %w(subpath_books 3 complete), [hash["controller"].controller_name, hash["id"], hash["action"]]
- #
- # hash = rs.recognize_path %w(posts new;preview)
- # assert_not_nil hash
- # assert_equal %w(subpath_books preview), [hash["controller"].controller_name, hash["action"]]
+ hash = rs.recognize_path %w(books 17;edit)
+ assert_not_nil hash
+ assert_equal %w(subpath_books 17 edit), [hash["controller"].controller_name, hash["id"], hash["action"]]
+
+ hash = rs.recognize_path %w(items 3;complete)
+ assert_not_nil hash
+ assert_equal %w(subpath_books 3 complete), [hash["controller"].controller_name, hash["id"], hash["action"]]
+
+ hash = rs.recognize_path %w(posts new;preview)
+ assert_not_nil hash
+ assert_equal %w(subpath_books preview), [hash["controller"].controller_name, hash["action"]]
hash = rs.recognize_path %w(posts 7)
assert_not_nil hash